/usr/share/doc/python-social-auth/backends/khanacademy.txt is in python-social-auth 0.2.13-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | Khan Academy
************
Khan Academy uses a variant of OAuth1 authentication flow. Check the
API details at Khan Academy API Authentication.
Follow this steps in order to use the backend:
* Register a new application at Khan Academy API Apps,
* Fill **Consumer Key** and **Consumer Secret** values:
SOCIAL_AUTH_KHANACADEMY_OAUTH1_KEY = ''
SOCIAL_AUTH_KHANACADEMY_OAUTH1_SECRET = ''
* Add the backend to "AUTHENTICATION_BACKENDS" setting:
AUTHENTICATION_BACKENDS = (
...
'social.backends.khanacademy.KhanAcademyOAuth1',
...
)
|