ebay-oauth-python-client
ebay-oauth-python-client copied to clipboard
Python OAuth SDK: Get OAuth tokens for eBay public APIs
```python credential = credentialutil.load('ebay-config.yaml') env_type = "production" scopes = ["https://api.ebay.com/oauth/api_scope", "https://api.ebay.com/oauth/api_scope/buy.item.feed"] application_token = oauth2api.get_application_token(env_type, scopes) ``` when i try to execute this code, i get: application_token = oauth2api.get_application_token(env_type, scopes) TypeError:...
Bumps [requests](https://github.com/psf/requests) from 2.21.0 to 2.31.0. Release notes Sourced from requests's releases. v2.31.0 2.31.0 (2023-05-22) Security Versions of Requests between v2.3.0 and v2.30.0 are vulnerable to potential forwarding of Proxy-Authorization...
We tried to install typing extensions with version 3.9.7 but it did not allow us to.
Given python 2 support ceases on 01/01/2020, just 4 months away at the time of writing, it seems odd to have chosen to support python 2 at all let alone...
Trying to get an application token and am getting `Traceback (most recent call last): File "query.py", line 150, in main() File "query.py", line 142, in main app_token = oauth.get_application_token(env_type =...
Its a bit insane to me that we've got developers working on OAuth and they name packages "model"... Oauth* always seems to be a mess to work with. ANYWAYS, if...
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...
It seems that currently the module can only be used from a source checkout. It'd be nice if this was installable with `pip`. I did a few tests for this...
Tiny format to `code-style` to make the Readme more readable.