├── CONTRIBUTING.adoc ├── LICENSE.txt ├── README.adoc ├── oauthclient ├── __init__.py ├── credentialutil.py ├── model │ ├── __init__.py │ ├── model.py │ └── util.py └── oauth2api.py ├── requirements.txt └── test ├── GetApplicationToken.py ├── GetUserAccessToken.py ├── TestUtil.py └── config ├── ebay-config-sample.json ├── ebay-config-sample.yaml ├── test-config-sample.json └── test-config-sample.yaml /CONTRIBUTING.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/ebay-oauth-python-client/HEAD/CONTRIBUTING.adoc -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/ebay-oauth-python-client/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/ebay-oauth-python-client/HEAD/README.adoc -------------------------------------------------------------------------------- /oauthclient/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oauthclient/credentialutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/ebay-oauth-python-client/HEAD/oauthclient/credentialutil.py -------------------------------------------------------------------------------- /oauthclient/model/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oauthclient/model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/ebay-oauth-python-client/HEAD/oauthclient/model/model.py -------------------------------------------------------------------------------- /oauthclient/model/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/ebay-oauth-python-client/HEAD/oauthclient/model/util.py -------------------------------------------------------------------------------- /oauthclient/oauth2api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/ebay-oauth-python-client/HEAD/oauthclient/oauth2api.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/ebay-oauth-python-client/HEAD/requirements.txt -------------------------------------------------------------------------------- /test/GetApplicationToken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/ebay-oauth-python-client/HEAD/test/GetApplicationToken.py -------------------------------------------------------------------------------- /test/GetUserAccessToken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/ebay-oauth-python-client/HEAD/test/GetUserAccessToken.py -------------------------------------------------------------------------------- /test/TestUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/ebay-oauth-python-client/HEAD/test/TestUtil.py -------------------------------------------------------------------------------- /test/config/ebay-config-sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/ebay-oauth-python-client/HEAD/test/config/ebay-config-sample.json -------------------------------------------------------------------------------- /test/config/ebay-config-sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/ebay-oauth-python-client/HEAD/test/config/ebay-config-sample.yaml -------------------------------------------------------------------------------- /test/config/test-config-sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/ebay-oauth-python-client/HEAD/test/config/test-config-sample.json -------------------------------------------------------------------------------- /test/config/test-config-sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/ebay-oauth-python-client/HEAD/test/config/test-config-sample.yaml --------------------------------------------------------------------------------