Amazon¶
Backend class¶
For Django, add this class path to AUTHENTICATION_BACKENDS. For other
integrations, use the same class path in the framework-specific backend
setting.
Backend name |
Class path |
|---|---|
|
|
Amazon implemented OAuth2 protocol for their authentication mechanism. To
enable python-social-auth support follow this steps:
Go to Amazon App Console and create an application.
Fill App Id and Secret in your project settings:
SOCIAL_AUTH_AMAZON_KEY = '...' SOCIAL_AUTH_AMAZON_SECRET = '...'
Enable the backend:
SOCIAL_AUTH_AUTHENTICATION_BACKENDS = ( ... 'social_core.backends.amazon.AmazonOAuth2', ... )
Further documentation at Website Developer Guide and Getting Started for Web.
- Note: This backend supports TLSv1 protocol since SSL will be deprecated
from May 25, 2015