Twitch¶
Backend classes¶
For Django, choose from these class paths for AUTHENTICATION_BACKENDS.
For other integrations, use the same class paths in the
framework-specific backend setting.
Backend name |
Class path |
|---|---|
|
|
|
|
Twitch works similar to Facebook (OAuth).
Register a new application in the connections tab of your Twitch settings page, set the callback URL to
http://example.com/complete/twitch/replacingexample.comwith your domain.Fill
Client IdandClient Secretvalues in the settings:SOCIAL_AUTH_TWITCH_KEY = '' SOCIAL_AUTH_TWITCH_SECRET = ''
Also it’s possible to define extra permissions with:
SOCIAL_AUTH_TWITCH_SCOPE = [...]