1
votes

I'm trying to a build a web application for Amazon sellers. I don't understand how to call Amazon MWS API using oauth calling and get user MWS authtoken like Etsy API.

  1. User Clicks Link
  2. User Signs In
  3. IRP Presents the Agreement
  4. Once Agreed, the key is returned to the MWS token

I've seen several programs do this but I can't find it. There seems to be no documentation on this topic and nobody is talking about it.

How can we implemented IRP?

2
Please read this before posting. stackoverflow.com/help/mcve . In order to get good answers is important to show what you have tried and what errors do you get and be very precise in your questions. General problems are difficult to simulate and not accepted on SO. - Elzo Valugi
i have completed my api but this api only single user but i want multi user like etsy - Tanveer Khan
If I understand correctly you want the API to be multiuser, but this is something that you should communicate with MWS not on Stackoverflow. There is little we can do to help you implement a desired API feature for a private company API. - Elzo Valugi

2 Answers

2
votes

There is a Ruby on Rails library for that: https://github.com/machineboy2045/omniauth-amazon-mws

If you use other languages, you can translate that library and make your own library for your programming language.

-2
votes