/usr/share/doc/python-social-auth/backends/naszaklasa.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 23 | NationBuilder
*************
NaszaKlasa supports OAuth2 as their authentication mechanism. Follow
these steps in order to use it:
* Register a new application at your NK Developers (define the
*Callback URL* to "http://example.com/complete/nk/" where
"example.com" is your domain).
* Fill the "Client ID" and "Client Secret" values from the newly
created application:
SOCIAL_AUTH_NK_KEY = ''
SOCIAL_AUTH_NK_SECRET = ''
* Enable the backend in "AUTHENTICATION_BACKENDS" setting:
AUTHENTICATION_BACKENDS = (
...
'social.backends.nk.NKOAuth2',
...
)
|