/usr/share/doc/python-social-auth/backends/appsfuel.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 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | Appsfuel
********
Appsfuel uses OAuth v2 for Authentication check the official docs too.
* Sign up at the Appsfuel Developer Program
* Create and verify a new app
* On the dashboard click on **Show API keys**
* Fill "Client Id" and "Client Secret" values in the settings:
SOCIAL_AUTH_APPSFUEL_KEY = '<App UID>'
SOCIAL_AUTH_APPSFUEL_SECRET = '<App secret>'
Appsfuel gives you the chance to integrate with **Live** or
**Sandbox** env.
Appsfuel Live
=============
* Add 'social.backends.contrib.appsfuel.AppsfuelBackend' into your
"AUTHENTICATION_BACKENDS".
* Then you can start using "{% url social:begin 'appsfuel' %}" in
your templates
Appsfuel Sandbox
================
* Add "'social.backends.appsfuel.AppsfuelOAuth2Sandbox'" into your
"AUTHENTICATION_BACKENDS".
* Then you can start using "{% url social:begin 'appsfuel-sandbox'
%}" in your templates
* Define the settings:
SOCIAL_AUTH_APPSFUEL_SANDBOX_KEY = '<App UID>'
SOCIAL_AUTH_APPSFUEL_SANDBOX_SECRET = '<App secret>'
|