Patreon¶
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 |
|---|---|
|
|
Patreon supports OAuth 2.0
Register a new application at Patreon Developer Portal.
Use the
social.backends.patreon.PatreonOAuth2, either by adding it to yourSOCIAL_AUTH_AUTHENTICATION_BACKENDSor instantiating it directly.Fill in the the
Client IDandClient Secret:SOCIAL_AUTH_PATREON_KEY = '<your client ID>' SOCIAL_AUTH_PATREON_SECRET = '<your client secret>'
Checkout the Patreon API Docs for more information.