/usr/share/doc/python-social-auth/backends/livejournal.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 | LiveJournal
***********
LiveJournal provides OpenId, it doesn't require any major settings in
order to work, beside being defined on "AUTHENTICATION_BACKENDS`":
SOCIAL_AUTH_AUTHENTICATION_BACKENDS = (
...
'social.backends.aol.AOLOpenId',
...
)
LiveJournal OpenId is provided by URLs in the form
"http://<username>.livejournal.com", this application retrieves the
"username" from the data in the current request by checking a
parameter named "openid_lj_user" which can be sent by "POST" or "GET".
|