ebay-oauth-python-client icon indicating copy to clipboard operation
ebay-oauth-python-client copied to clipboard

In GetApplicationToken.py the app_scope too is too broad.

Open matecsaj opened this issue 4 years ago • 0 comments
trafficstars

app_scopes = ["https://api.ebay.com/oauth/api_scope", "https://api.ebay.com/oauth/api_scope/buy.item.feed"]

should be

app_scopes = ["https://api.ebay.com/oauth/api_scope"]

or this will occur

Error: invalid_scope - The requested scope is invalid, unknown, malformed, or exceeds the scope granted to the client

Perhaps, accounts granted extra privileges can get away with it, but a basic account can't.

matecsaj avatar Dec 20 '20 21:12 matecsaj