DailyMotion

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

dailymotion

social_core.backends.dailymotion.DailymotionOAuth2

DailyMotion uses OAuth2. In order to enable the backend follow:

  • Register an application at DailyMotion Developer Portal

  • Fill in the Client Id and Client Secret values in your settings:

    SOCIAL_AUTH_DAILYMOTION_KEY = ''
    SOCIAL_AUTH_DAILYMOTION_SECRET = ''
    
  • Set the Callback URL to http://<your hostname>/complete/dailymotion/

  • Specify scopes with:

    SOCIAL_AUTH_DAILYMOTION_SCOPE = [...]
    

    Available scopes are listed in the Requesting Extended Permissions section.