skip to Main Content

I am making a django app that can hold info about items i have on ebay.
So, each user would have multiple ebay accounts.
For example:
user1 would have access to ebay1, ebay2, ebay3 account.
How can I get appid, certid, devid and token for each account?
The best would be to click ‘add ebay account’ and in new window with ebay sign in page and authorize by inserting username/password.

I had a look to:

https://github.com/timotheus/ebaysdk-python

https://developer.ebay.com/devzone/xml/docs/reference/ebay/FetchToken.html

but it is not clear to me.
Can anyone provide me some step-by-step or any guidelines?

Thanks in advance

3

Answers


  1. Chosen as BEST ANSWER

    I used code from this repo: https://github.com/luke-dixon/django-ebay-accounts with fix from: here it works great


  2. You simply login to the developer account and then Click User Tokens.

    next click Get a User Token Here.

    login to each account you need a token for

    your APPID, CertId, and DevID always stay the same..

    Login or Signup to reply.
  3. InvalidHeader at /ebay_accounts/begin_create Header value 3 must be of type str or bytes, not <class 'int'> 
    

    you have to append the str to your data you send so str(“whatever”)

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search