Vimeo¶
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 |
|---|---|
|
|
|
|
Vimeo uses OAuth1 to grant access to their API. In order to get the backend running follow:
Register an application at Vimeo Developer Portal filling the required settings. Ensure to fill
App Callback URLfield withhttp://<your hostname>/complete/vimeo/Fill in the Client Id and Client Secret values in your settings:
SOCIAL_AUTH_VIMEO_KEY = '' SOCIAL_AUTH_VIMEO_SECRET = ''
Specify scopes with:
SOCIAL_AUTH_VIMEO_SCOPE = [...]
Add the backend to
AUTHENTICATION_BACKENDS:AUTHENTICATION_BACKENDS = ( ... 'social_core.backends.vimeo.VimeoOAuth1', ... )