Replace 'BEARER' with 'Bearer' everywhere.

RFC6750 indicates that the correct header format is 'Bearer <token>',
not 'BEARER <token>'.
This commit is contained in:
Griffin Schneider
2016-05-05 15:54:22 -04:00
parent b92e240ac2
commit e5ab34b658
28 changed files with 79 additions and 79 deletions

View File

@@ -72,8 +72,8 @@ from pprint import pprint
# Configure API key authorization: api_key
swagger_client.configuration.api_key['api_key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. BEARER) for API key, if needed
# swagger_client.configuration.api_key_prefix['api_key'] = 'BEARER'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['api_key'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.StoreApi()