We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
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.
The text was updated successfully, but these errors were encountered: