From: Matías Aguirre Date: Fri, 26 Aug 2011 02:41:26 +0000 (-0300) Subject: Doc fix X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=6ff3fc25693ad88b0ced2ccbbc134df95cf1671a;p=django-social-auth.git Doc fix --- diff --git a/README.rst b/README.rst index e9fdce3..5017de1 100644 --- a/README.rst +++ b/README.rst @@ -509,12 +509,16 @@ an application and apply for a set of keys. Check `Google OAuth2`_ document for To enable OAuth2 support: -- fill ``Client Key`` and ``Client Secret`` settings, these values can be obtained +- fill ``Client ID`` and ``Client Secret`` settings, these values can be obtained easily as described on `OAuth2 Registering`_ doc:: GOOGLE_OAUTH2_CLIENT_KEY = '' GOOGLE_OAUTH2_CLIENT_SECRET = '' + Take into account that ``GOOGLE_OAUTH2_CLIENT_KEY`` is the value referred as + ``Client ID`` on Google's doc, but ``django-social-auth`` uses ``*_KEY`` + terminology on all backends to keep it consistent. + - scopes are shared between OAuth mechanisms:: GOOGLE_OAUTH_EXTRA_SCOPE = [...] diff --git a/doc/backends/google.rst b/doc/backends/google.rst index c27def7..eafd856 100644 --- a/doc/backends/google.rst +++ b/doc/backends/google.rst @@ -49,12 +49,16 @@ an application and apply for a set of keys. Check `Google OAuth2`_ document for To enable OAuth2 support: -- fill ``Client Key`` and ``Client Secret`` settings, these values can be obtained +- fill ``Client ID`` and ``Client Secret`` settings, these values can be obtained easily as described on `OAuth2 Registering`_ doc:: GOOGLE_OAUTH2_CLIENT_KEY = '' GOOGLE_OAUTH2_CLIENT_SECRET = '' + Take into account that ``GOOGLE_OAUTH2_CLIENT_KEY`` is the value referred as + ``Client ID`` on Google's doc, but ``django-social-auth`` uses ``*_KEY`` + terminology on all backends to keep it consistent. + - scopes are shared between OAuth mechanisms:: GOOGLE_OAUTH_EXTRA_SCOPE = [...]