Is there a way to log into amazon.com programmatically in C #?

Is there a way to programmatically get to the order details page if I have an order identifier, username, password? I would suggest that I would need to log in to amazon.com programmatically.

+4
source share
1 answer

There is an ordering API for the Amazon Marketplace . If you are a seller and want to know what orders have been placed for you, this is the way to go.

If you are a customer and want to check the orders placed by you, the best option I know is a screen scraper (maybe an API that I am not familiar with). I have used the HTML Agility Pack in the past for this type of thing. It allows you to enter the website, and then helps in analyzing the page you are interested in, which may be the order page.

+2
source

Source: https://habr.com/ru/post/1382619/


All Articles