• Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • You can also use markdown to share your code. When using markdown your code will be automatically converted to BBCode. For help with markdown check out the markdown guide.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.


    To learn more about how to use our BBCode feature, please click here.

    Thank you, Code Forum.

Python EBAY API

simong1993

Gold Coder
Staff Team
Guardian
Hey all, has anyone ever dealt with Ebays API before. There docs are pretty dam useless.

So from what i understand you send someone to a URL to approve your Application, This gives you a session id to get a Auth'n'Auth token, Then every hour you can use the Auth'n'Auth token to get a OAuth token. Confusing right.

This is the docs they give you https://developer.ebay.com/api-docs/static/oauth-authorization-code-grant.html

I have tried to by pass the first bit as i already have the Auth'N'Auth token and this is the code so far

Python:
def EbayToken():
    client_id = "#"
    client_secret = "#"
    encodedData = base64.b64encode(bytes(f"{client_id}:{client_secret}", "ISO-8859-1")).decode("ascii")
    authorization_header_string = f"Authorization: Basic {encodedData}"

    headers = {"Authorization": "Basic " + encodedData, "Content-Type": "application/x-www-form-urlencoded"}

    data = {
        'grant_type': 'authorization_code',
        ' refresh_token': '#',
        ' scope': 'https://api.ebay.com/oauth/api_scope/sell.account  https://api.ebay.com/oauth/api_scope/sell.inventory'
    }

    response = requests.post('https://api.ebay.com/identity/v1/oauth2/token', headers=headers, data=data)
    data = response.json()
    print(json.dumps(data, indent=10))

the # are my secret parts but when run it always brings back a empty query. Any help would be amazing :D
 

New Threads

Buy us a coffee!

300x250
Top Bottom