Coursera ============ 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. .. list-table:: :header-rows: 1 * - Backend name - Class path * - ``coursera`` - ``social_core.backends.coursera.CourseraOAuth2`` Coursera uses a variant of OAuth2 authentication. The details of the API can be found at `OAuth2-based APIs - Coursera Technology`_. Take the following steps in order to use the backend: 1. Create an account at `Coursera`_. 2. Open `Developer Console`_, create an organisation and application. 3. Set **Client ID** as a ``SOCIAL_AUTH_COURSERA_KEY`` and **Secret Key** as a ``SOCIAL_AUTH_COURSERA_SECRET`` in your local settings. 4. Add the backend to ``AUTHENTICATION_BACKENDS`` setting:: AUTHENTICATION_BACKENDS = ( ... 'social_core.backends.coursera.CourseraOAuth2', ... ) .. _OAuth2-based APIs - Coursera Technology: https://tech.coursera.org/app-platform/oauth2/ .. _Coursera: https://accounts.coursera.org/console .. _Developer Console: https://accounts.coursera.org/console