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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528
|
Providers
=========
Most providers require you to sign up for a so called API client or app,
containing a client ID and API secret. You must add a ``SocialApp``
record per provider via the Django admin containing these app
credentials.
When creating the OAuth app on the side of the provider pay special
attention to the callback URL (sometimes also referred to as redirect
URL). If you do not configure this correctly, you will receive login
failures when attempting to log in, such as::
An error occurred while attempting to login via your social network account.
Use a callback URL of the form::
http://example.com/accounts/twitter/login/callback/
http://example.com/accounts/soundcloud/login/callback/
...
For local development, use the following::
http://127.0.0.1:8000/accounts/twitter/login/callback/
23andMe
-------
App registration (get your key and secret here)
https://api.23andme.com/dev/
Development callback URL
http://localhost:8000/accounts/23andme/login/callback/
500px
-----
App registration (get your key and secret here)
https://500px.com/settings/applications
Development callback URL
http://localhost:8000/accounts/500px/login/callback/
AgaveAPI
--------
Account Signup
https://public.agaveapi.co/create_account
App registration
Run ``client-create`` from the cli: https://bitbucket.org/agaveapi/cli/overview
Development callback URL
http://localhost:8000/accounts/agave/login/callback/
*May require https url, even for localhost*
Amazon
------
Amazon requires secure OAuth callback URLs (``redirect_uri``), please
see the section on HTTPS about how this is handled.
App registration (get your key and secret here)
http://login.amazon.com/manageApps
Development callback URL
https://example.com/accounts/amazon/login/callback/
AngelList
---------
App registration (get your key and secret here)
https://angel.co/api/oauth/clients
Development callback URL
http://localhost:8000/accounts/angellist/login/callback/
Auth0
-----
App registration (get your key and secret here)
https://manage.auth0.com/#/clients
Development callback URL
http://localhost:8000/accounts/auth0/login/callback/
You'll need to specify the base URL for your Auth0 domain:
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'auth0': {
'AUTH0_URL': 'https://your.auth0domain.auth0.com',
}
}
Authentiq
---------
Browse to https://www.authentiq.com/developers to get started.
App registration
https://dashboard.authentiq.com/
Sign in or register with your Authentiq ID (select ``Download the app`` while signing in if you don't have Authentiq ID yet).
Development redirect URL
http://localhost:8000/accounts/authentiq/login/callback/
While testing you can leave the ``Redirect URIs`` field empty in the dashboard. You can specify what identity details to request via the ``SCOPE`` parameter.
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'authentiq': {
'SCOPE': ['email', 'aq:name']
}
}
Valid scopes include: ``email``, ``phone``, ``address``, ``aq:name``, ``aq:location``. The default is to request a user's name, and email address if ``SOCIALACCOUNT_QUERY_EMAIL=True``. You can request and require a verified email address by setting ``SOCIALACCOUNT_EMAIL_VERIFICATION=True`` and ``SOCIALACCOUNT_EMAIL_REQUIRED=True``.
Baidu
-----
The Baidu OAuth2 authentication documentation:
http://developer.baidu.com/wiki/index.php?title=docs/oauth/refresh
http://developer.baidu.com/wiki/index.php?title=docs/oauth/rest/file_data_apis_lista
Basecamp
--------
App registration (get your key and secret here)
https://integrate.37signals.com/
The Basecamp OAuth2 authentication documentation
https://github.com/basecamp/api/blob/master/sections/authentication.md#oauth-2
Development callback URL
https://localhost:8000/accounts/basecamp/login/callback/
Battle.net
----------
The Battle.net OAuth2 authentication documentation
https://dev.battle.net/docs/read/oauth
Register your app here (Mashery account required)
https://dev.battle.net/apps/register
Development callback URL
https://localhost:8000/accounts/battlenet/login/callback/
Note that in order to use battletags as usernames, you are expected to override
either the ``username`` field on your User model, or to pass a custom validator
which will accept the ``#`` character using the ``ACCOUNT_USERNAME_VALIDATORS``
setting. Such a validator is available in
``socialaccount.providers.battlenet.validators.BattletagUsernameValidator``.
Bitbucket
---------
App registration (get your key and secret here)
https://bitbucket.org/account/user/{{yourusername}}/oauth-consumers/new
Make sure you select the Account:Read permission.
Development callback URL
http://127.0.0.1:8000/accounts/bitbucket_oauth2/login/callback/
Note that Bitbucket calls the ``client_id`` *Key* in their user interface.
Don't get confused by that; use the *Key* value for your ``client_id`` field.
Box
---
App registration (get your key and secret here)
https://app.box.com/developers/services/edit/
Development callback URL
http://localhost:8000/accounts/box/login/callback/
CERN
----
App registration (get your key and secret here)
https://sso-management.web.cern.ch/OAuth/RegisterOAuthClient.aspx
CERN OAuth2 Documentation
https://espace.cern.ch/authentication/CERN%20Authentication/OAuth.aspx
Dataporten
----------
App registration (get your key and secret here)
https://docs.dataporten.no/docs/gettingstarted/
Development callback URL
http://localhost:8000/accounts/dataporten/login/callback
daum
----
App registration (get your key and secret here)
https://developers.daum.net/console
Development callback URL
http://127.0.0.1:8000/accounts/daum/login/callback/
DigitalOcean
------------
App registration (get your key and secret here)
https://cloud.digitalocean.com/settings/applications
Development callback URL
http://127.0.0.1:8000/accounts/digitalocean/login/callback/
With the acquired access token you will have read permissions on the API by
default. If you also need write access specify the scope as follows. See
https://developers.digitalocean.com/documentation/oauth/#scopes for details.
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'digitalocean': {
'SCOPE': [
'read write',
],
}
}
Discord
-------
App registration and management (get your key and secret here)
https://discordapp.com/developers/applications/me
Make sure to Add Redirect URI to your application.
Development callback (redirect) URL
http://127.0.0.1:8000/accounts/discord/login/callback/
Doximity
--------
Doximity OAuth2 implementation documentation
https://www.doximity.com/developers/documentation#oauth
Request API keys here
https://www.doximity.com/developers/api_signup
Development callback URL
http://localhost:8000/accounts/doximity/login/callback/
Draugiem
--------
App registration (get your key and secret here)
https://www.draugiem.lv/applications/dev/create/?type=4
Authentication documentation
https://www.draugiem.lv/applications/dev/docs/passport/
Development callback URL
http://localhost:8000/accounts/draugiem/login/callback/
Dropbox
-------
App registration (get your key and secret here)
https://www.dropbox.com/developers/apps/
Development callback URL
http://localhost:8000/accounts/dropbox/login/callback/
Dwolla
------------
App registration (get your key and secret here)
https://dashboard-uat.dwolla.com/applications
Development callback URL
http://127.0.0.1:8000/accounts/dwolla/login/callback/
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'dwolla': {
'SCOPE': [
'Send',
'Transactions',
'Funding',
'AccountInfoFull',
],
'ENVIROMENT':'sandbox',
}
}
Dwolla
------------
App registration (get your key and secret here)
https://dashboard-uat.dwolla.com/applications
Development callback URL
http://127.0.0.1:8000/accounts/dwolla/login/callback/
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'dwolla': {
'SCOPE': [
'Send',
'Transactions',
'Funding',
'AccountInfoFull',
],
'ENVIROMENT':'sandbox',
}
}
Edmodo
------
Edmodo OAuth2 documentation
https://developers.edmodo.com/edmodo-connect/edmodo-connect-overview-getting-started/
You can optionally specify additional permissions to use. If no ``SCOPE``
value is set, the Edmodo provider will use ``basic`` by default:
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'edmodo': {
'SCOPE': [
'basic',
'read_groups',
'read_connections',
'read_user_email',
'create_messages',
'write_library_items',
]
}
}
Eve Online
----------
Register your application at ``https://developers.eveonline.com/applications/create``.
Note that if you have ``STORE_TOKENS`` enabled (the default), you will need to
set up your application to be able to request an OAuth scope. This means you
will need to set it as having "CREST Access". The least obtrusive scope is
"publicData".
Eventbrite
------------------
Log in and click your profile name in the top right navigation, then select
``Account Settings``. Choose ``App Management`` near the bottom of the left
navigation column. You can then click ``Create A New App`` on the upper left
corner.
App registration
https://www.eventbrite.com/myaccount/apps/
Fill in the form with the following link
Development callback URL
http://127.0.0.1:8000/accounts/eventbrite/login/callback/
for both the ``Application URL`` and ``OAuth Redirect URI``.
Evernote
--------
Register your OAuth2 application at ``https://dev.evernote.com/doc/articles/authentication.php``:
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'evernote': {
'EVERNOTE_HOSTNAME': 'evernote.com' # defaults to sandbox.evernote.com
}
}
Facebook
--------
For Facebook both OAuth2 and the Facebook Connect Javascript SDK are
supported. You can even mix the two.
An advantage of the Javascript SDK may be a more streamlined user
experience as you do not leave your site. Furthermore, you do not need
to worry about tailoring the login dialog depending on whether or not
you are using a mobile device. Yet, relying on Javascript may not be
everybody's cup of tea.
To initiate a login use:
.. code-block:: python
{% load socialaccount %}
{% providers_media_js %}
<a href="{% provider_login_url "facebook" method="js_sdk" %}">Facebook Connect</a>
or:
.. code-block:: python
{% load socialaccount %}
<a href="{% provider_login_url "facebook" method="oauth2" %}">Facebook OAuth2</a>
The following Facebook settings are available:
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'facebook': {
'METHOD': 'oauth2',
'SCOPE': ['email', 'public_profile', 'user_friends'],
'AUTH_PARAMS': {'auth_type': 'reauthenticate'},
'INIT_PARAMS': {'cookie': True},
'FIELDS': [
'id',
'email',
'name',
'first_name',
'last_name',
'verified',
'locale',
'timezone',
'link',
'gender',
'updated_time',
],
'EXCHANGE_TOKEN': True,
'LOCALE_FUNC': 'path.to.callable',
'VERIFIED_EMAIL': False,
'VERSION': 'v2.12',
}
}
METHOD:
Either ``js_sdk`` or ``oauth2``. The default is ``oauth2``.
SCOPE:
By default, the ``email`` scope is required depending on whether or not
``SOCIALACCOUNT_QUERY_EMAIL`` is enabled.
Apps using permissions beyond ``email``, ``public_profile`` and ``user_friends``
require review by Facebook.
See `Permissions with Facebook Login <https://developers.facebook.com/docs/facebook-login/permissions>`_
for more information.
AUTH_PARAMS:
Use ``AUTH_PARAMS`` to pass along other parameters to the ``FB.login``
JS SDK call.
FIELDS:
The fields to fetch from the Graph API ``/me/?fields=`` endpoint.
For example, you could add the ``'friends'`` field in order to
capture the user's friends that have also logged into your app using
Facebook (requires ``'user_friends'`` scope).
EXCHANGE_TOKEN:
The JS SDK returns a short-lived token suitable for client-side use. Set
``EXCHANGE_TOKEN = True`` to make a server-side request to upgrade to a
long-lived token before storing in the ``SocialToken`` record. See
`Expiration and Extending Tokens <https://developers.facebook.com/docs/facebook-login/access-tokens#extending>`_.
LOCALE_FUNC:
The locale for the JS SDK is chosen based on the current active language of
the request, taking a best guess. This can be customized using the
``LOCALE_FUNC`` setting, which takes either a callable or a path to a callable.
This callable must take exactly one argument, the request, and return `a
valid Facebook locale <http://developers.facebook.com/docs/
internationalization/>`_ as a string, e.g. US English:
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'facebook': {
'LOCALE_FUNC': lambda request: 'en_US'
}
}
VERIFIED_EMAIL:
It is not clear from the Facebook documentation whether or not the fact
that the account is verified implies that the e-mail address is verified
as well. For example, verification could also be done by phone or credit
card. To be on the safe side, the default is to treat e-mail addresses
from Facebook as unverified. But, if you feel that is too paranoid, then
use this setting to mark them as verified. Due to lack of an official
statement from the side of Facebook, attempts have been made to
`reverse engineer the meaning of the verified flag <https://stackoverflow.com/questions/14280535/is-it-possible-to-check-if-an-email-is-confirmed-on-facebook>`_.
Do know that by setting this to ``True`` you may be introducing a security
risk.
VERSION:
The Facebook Graph API version to use. The default is ``v2.12``.
App registration (get your key and secret here)
A key and secret key can be obtained by
`creating an app <https://developers.facebook.com/apps>`_.
After registration you will need to make it available to the public.
In order to do that your app first has to be
`reviewed by Facebook <https://developers.facebook.com/docs/apps/review>`_.
Development callback URL
Leave your App Domains empty and put ``http://localhost:8000`` in the
section labeled ``Website with Facebook Login``. Note that you'll need to
add your site's actual domain to this section once it goes live.
Firefox Accounts
----------------
The Firefox Accounts provider is currently limited to Mozilla relying services
but there is the intention, in the future, to allow third-party services to
delegate authentication. There is no committed timeline for this.
The provider is OAuth2 based. More info:
https://developer.mozilla.org/en-US/Firefox_Accounts
Note: This is not the same as the Mozilla Persona provider below.
The following Firefox Accounts settings are available:
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'fxa': {
'SCOPE': ['profile'],
'OAUTH_ENDPOINT': 'https://oauth.accounts.firefox.com/v1',
'PROFILE_ENDPOINT': 'https://profile.accounts.firefox.com/v1',
}
}
SCOPE:
Requested OAuth2 scope. Default is ['profile'], which will work for
applications on the Mozilla trusted whitelist. If your application is not
on the whitelist, then define SCOPE to be ['profile:email', 'profile:uid'].
OAUTH_ENDPOINT:
Explicitly set the OAuth2 endpoint. Default is the production endpoint
"https://oauth.accounts.firefox.com/v1".
PROFILE_ENDPOINT:
Explicitly set the profile endpoint. Default is the production endpoint
and is "https://profile.accounts.firefox.com/v1".
Flickr
------
App registration (get your key and secret here)
https://www.flickr.com/services/apps/create/
You can optionally specify the application permissions to use. If no ``perms``
value is set, the Flickr provider will use ``read`` by default.
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'flickr': {
'AUTH_PARAMS': {
'perms': 'write',
}
}
}
More info:
https://www.flickr.com/services/api/auth.oauth.html#authorization
GitHub
------
App registration (get your key and secret here)
https://github.com/settings/applications/new
Development callback URL
http://127.0.0.1:8000/accounts/github/login/callback/
If you want more than just read-only access to public data, specify the scope
as follows. See https://developer.github.com/v3/oauth/#scopes for details.
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'github': {
'SCOPE': [
'user',
'repo',
'read:org',
],
}
}
Enterprise Support
******************
If you use GitHub Enterprise add your server URL to your Django settings as
follows:
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'github': {
'GITHUB_URL': 'https://your.github-server.domain',
}
}
GitLab
------
The GitLab provider works by default with https://gitlab.com. It allows you
to connect to your private GitLab server and use GitLab as an OAuth2
authentication provider as described in GitLab docs at
http://doc.gitlab.com/ce/integration/oauth_provider.html
The following GitLab settings are available, if unset https://gitlab.com will
be used.
GITLAB_URL:
Override endpoint to request an authorization and access token. For your
private GitLab server you use: ``https://your.gitlab.server.tld``
SCOPE:
The ``read_user`` scope is required for the login procedure.
Example:
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'gitlab': {
'GITLAB_URL': 'https://your.gitlab.server.tld',
'SCOPE': ['read_user'],
},
}
Globus
------
Registering an application:
https://developers.globus.org/
By default, you will have access to the openid, profile, and offline_access
scopes. With the offline_access scope, the API will provide you with a
refresh token. For additional scopes, see the Globus API docs:
https://docs.globus.org/api/auth/reference/
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'globus': {
'SCOPE': [
'openid',
'profile',
'email',
'urn:globus:auth:scope:transfer.api.globus.org:all'
]
}
}
Google
------
The Google provider is OAuth2 based.
More info:
http://code.google.com/apis/accounts/docs/OAuth2.html#Registering
App registration
****************
Create a google app to obtain a key and secret through the developer console.
Google Developer Console
https://console.developers.google.com/
After you create a project you will have to create a "Client ID" and fill in
some project details for the consent form that will be presented to the client.
Under "APIs & auth" go to "Credentials" and create a new Client ID. Probably
you will want a "Web application" Client ID. Provide your domain name or test
domain name in "Authorized JavaScript origins". Finally fill in
``http://127.0.0.1:8000/accounts/google/login/callback/`` in the
"Authorized redirect URI" field. You can fill multiple URLs, one for each test
domain. After creating the Client ID you will find all details for the Django
configuration on this page.
Users that login using the app will be presented a consent form. For this to
work additional information is required. Under "APIs & auth" go to
"Consent screen" and at least provide an email and product name.
Django configuration
********************
The app credentials are configured for your Django installation via the admin
interface. Create a new socialapp through ``/admin/socialaccount/socialapp/``.
Fill in the form as follows:
* Provider, "Google"
* Name, your pick, suggest "Google"
* Client id, is called "Client ID" by Google
* Secret key, is called "Client secret" by Google
* Key, is not needed, leave blank.
Optionally, you can specify the scope to use as follows:
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'google': {
'SCOPE': [
'profile',
'email',
],
'AUTH_PARAMS': {
'access_type': 'online',
}
}
}
By default, ``profile`` scope is required, and optionally ``email`` scope
depending on whether or not ``SOCIALACCOUNT_QUERY_EMAIL`` is enabled.
You must set ``AUTH_PARAMS['access_type']`` to ``offline`` in order to
receive a refresh token on first login and on reauthentication requests.
Instagram
---------
App registration (get your key and secret here)
https://www.instagram.com/developer/clients/manage/
Development callback URL
http://localhost:8000/accounts/instagram/login/callback/
Kakao
-----
App registration (get your key here)
https://developers.kakao.com/apps
Development callback URL
http://localhost:8000/accounts/kakao/login/callback/
Line
----
App registration (get your key and secret here)
https://business.line.me
Development callback URL
http://127.0.0.1:8000/accounts/line/login/callback/
LinkedIn
--------
The LinkedIn provider comes in two flavors: OAuth 1.0
(``allauth.socialaccount.providers.linkedin``) and OAuth 2.0
(``allauth.socialaccount.providers.linkedin_oauth2``).
You can specify the scope and fields to fetch as follows:
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'linkedin': {
'SCOPE': [
'r_basicprofile',
'r_emailaddress'
],
'PROFILE_FIELDS': [
'id',
'first-name',
'last-name',
'email-address',
'picture-url',
'public-profile-url',
]
}
}
By default, ``r_emailaddress`` scope is required depending on whether or
not ``SOCIALACCOUNT_QUERY_EMAIL`` is enabled.
Note: if you are experiencing issues where it seems as if the scope has no
effect you may be using an old LinkedIn app that is not scope enabled.
Please refer to
``https://developer.linkedin.com/forum/when-will-old-apps-have-scope-parameter-enabled``
for more background information.
Furthermore, we have experienced trouble upgrading from OAuth 1.0 to OAuth 2.0
using the same app. Attempting to do so resulted in a weird error message when
fetching the access token::
missing required parameters, includes an invalid parameter value, parameter more then once. : Unable to retrieve access token : authorization code not found
If you are using tokens originating from the mobile SDK, you will need to specify
additional headers:
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'linkedin': {
'HEADERS': {
'x-li-src': 'msdk'
}
}
}
App registration (get your key and secret here)
https://www.linkedin.com/secure/developer?newapp=
Authorized Redirect URLs (OAuth2)
*********************************
Add any you need (up to 200) consisting of:
{``ACCOUNT_DEFAULT_HTTP_PROTOCOL``}://{hostname}{:optional_port}/{allauth_base_url}/linkedin_oauth2/login/callback/
For example when using the built-in django server and default settings:
http://localhost:8000/accounts/linkedin_oauth2/login/callback/
Development "Accept" and "Cancel" redirect URL (OAuth 1.0a)
***********************************************************
Leave the OAuth1 redirect URLs empty.
MailChimp (OAuth2)
------------------
MailChimp has a simple API for working with your own data and a `good library`_
already exists for this use. However, to allow other MailChimp users to use an
app you develop, the OAuth2 API allows those users to give or revoke access
without creating a key themselves.
.. _good library: https://pypi.python.org/pypi/mailchimp3
Registering a new app
*********************
Instructions for generating your own OAuth2 app can be found at
https://developer.mailchimp.com/documentation/mailchimp/guides/how-to-use-oauth2/.
It is worth reading that carefully before following the instructions below.
Login via https://login.mailchimp.com/, which will redirect you to
``https://usX.admin.mailchimp.com/`` where the prefix ``usX`` (``X`` is an
integer) is the subdomain you need to connect to. Click on your username in the
top right corner and select *Profile*. On the next page select *Extras* then
click API keys, which should lead you to:
App registration (where ``X`` is dependent on your account)
https://usX.admin.mailchimp.com/account/oauth2/
Fill in the form with the following URL for local development:
Development callback URL
https://127.0.0.1:8000/accounts/mailchimp/login/callback/
Testing Locally
***************
Note the requirement of **https**. If you would like to test OAuth2
authentication locally before deploying a default django project will raise
errors because development mode does not support ``https``. One means of
circumventing this is to install ``django-extensions``::
pip install django-extensions
add it to your ``INSTALLED_APPS``
.. code-block:: python
INSTALLED_APPS = (
...
'django_extensions',
...
)
and then run::
./manage.py runserver_plus --cert cert
which should allow you to test locally via https://127.0.0.1:8000. Some
browsers may require enabling this on localhost and not support by default and
ask for permission.
Microsoft Graph
-----------------
Microsoft Graph API is the gateway to connect to mail, calendar, contacts,
documents, directory, devices and more.
Apps can be registered (for consumer key and secret) here
https://apps.dev.microsoft.com/
By default, `common` (`organizations` and `consumers`) tenancy is configured
for the login. To restrict it, change the `tenant` setting as shown below.
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'microsoft': {
'tenant': 'organizations',
}
}
Naver
-----
App registration (get your key and secret here)
https://developers.naver.com/appinfo
Development callback URL
http://localhost:8000/accounts/naver/login/callback/
Odnoklassniki
-------------
App registration (get your key and secret here)
http://apiok.ru/wiki/pages/viewpage.action?pageId=42476486
Development callback URL
http://example.com/accounts/odnoklassniki/login/callback/
OpenID
------
The OpenID provider does not require any settings per se. However, a typical
OpenID login page presents the user with a predefined list of OpenID providers
and allows the user to input their own OpenID identity URL in case their
provider is not listed by default. The list of providers displayed by the
builtin templates can be configured as follows:
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'openid': {
'SERVERS': [
dict(id='yahoo',
name='Yahoo',
openid_url='http://me.yahoo.com'),
dict(id='hyves',
name='Hyves',
openid_url='http://hyves.nl'),
dict(id='google',
name='Google',
openid_url='https://www.google.com/accounts/o8/id'),
]
}
}
You can manually specify extra_data you want to request from server as follows::
SOCIALACCOUNT_PROVIDERS = \
{ 'openid':
{ 'SERVERS':
[ dict(id='mojeid',
name='MojeId',
openid_url='https://mojeid.cz/endpoint/',
extra_attributes = [
('phone', 'http://axschema.org/contact/phone/default', False),
('birth_date', 'http://axschema.org/birthDate', False,),
])]}}
Attributes are in form (id, name, required) where id is key in extra_data field of socialaccount,
name is identifier of requested attribute and required specifies whether attribute is required.
If you want to manually include login links yourself, you can use the
following template tag:
.. code-block:: python
{% load socialaccount %}
<a href="{% provider_login_url "openid" openid="https://www.google.com/accounts/o8/id" next="/success/url/" %}">Google</a>
ORCID
-----
The ORCID provider should work out of the box provided that you are using the
Production ORCID registry and the public API. In other settings, you will need
to define the API you are using in your site's settings, as follows:
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'orcid': {
# Base domain of the API. Default value: 'orcid.org', for the production API
'BASE_DOMAIN':'sandbox.orcid.org', # for the sandbox API
# Member API or Public API? Default: False (for the public API)
'MEMBER_API': True, # for the member API
}
}
Patreon
-------
App registration (get your key and secret here)
https://www.patreon.com/platform/documentation/clients
Development callback URL
http://127.0.0.1:8000/accounts/patreon/login/callback/
Paypal
------
The following Paypal settings are available:
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'paypal': {
'SCOPE': ['openid', 'email'],
'MODE': 'live',
}
}
SCOPE:
In the Paypal developer site, you must also check the required attributes
for your application. For a full list of scope options, see
https://developer.paypal.com/docs/integration/direct/identity/attributes/
MODE:
Either ``live`` or ``test``. Set to test to use the Paypal sandbox.
App registration (get your key and secret here)
https://developer.paypal.com/webapps/developer/applications/myapps
Development callback URL
http://example.com/accounts/paypal/login/callback
Persona
-------
Note: Mozilla Persona was shut down on November 30th 2016. See
`the announcement <https://wiki.mozilla.org/Identity/Persona_Shutdown_Guidelines_for_Reliers>`_
for details.
Mozilla Persona requires one setting, the "AUDIENCE" which needs to be the
hardcoded hostname and port of your website. See
https://developer.mozilla.org/en-US/Persona/Security_Considerations#Explicitly_specify_the_audience_parameter
for more information why this needs to be set explicitly and can't be derived
from user provided data:
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'persona': {
'AUDIENCE': 'https://www.example.com',
}
}
The optional ``REQUEST_PARAMETERS`` dictionary contains parameters that are
passed as is to the ``navigator.id.request()`` method to influence the
look and feel of the Persona dialog:
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'persona': {
'AUDIENCE': 'https://www.example.com',
'REQUEST_PARAMETERS': {'siteName': 'Example'},
}
}
Pinterest
---------
The Pinterest OAuth2 documentation:
https://developers.pinterest.com/docs/api/overview/#authentication
You can optionally specify additional permissions to use. If no ``SCOPE``
value is set, the Pinterest provider will use ``read_public`` by default.
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'pinterest': {
'SCOPE': [
'read_public',
'read_relationships',
]
}
}
SCOPE:
For a full list of scope options, see
https://developers.pinterest.com/docs/api/overview/#scopes
QuickBooks
------
App registration (get your key and secret here)
https://developers.intuit.com/v2/ui#/app/startcreate
Development callback URL
http://localhost:8000/accounts/quickbooks/login/callback/
You can specify sandbox mode by adding the following to the SOCIALACCOUNT_PROVIDERS in your settings.
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'quickbooks': {
'SANDBOX': TRUE,
}
}
Reddit
------
App registration (get your key and secret here)
https://www.reddit.com/prefs/apps/
Development callback URL
http://localhost:8000/accounts/reddit/login/callback/
By default, access to Reddit is temporary. You can specify the ``duration``
auth parameter to make it ``permanent``.
You can optionally specify additional permissions to use. If no ``SCOPE``
value is set, the Reddit provider will use ``identity`` by default.
In addition, you should override your user agent to comply with Reddit's API
rules, and specify something in the format
``<platform>:<app ID>:<version string> (by /u/<reddit username>)``. Otherwise,
you will risk additional rate limiting in your application.
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'reddit': {
'AUTH_PARAMS': {'duration': 'permanent'},
'SCOPE': ['identity', 'submit'],
'USER_AGENT': 'django:myappid:1.0 (by /u/yourredditname)',
}
}
Salesforce
----------
The Salesforce provider requires you to set the login VIP as the provider
model's 'key' (in addition to client id and secret). Production environments
use https://login.salesforce.com/. Sandboxes use https://test.salesforce.com/.
HTTPS is required for the callback.
Development callback URL
https://localhost:8000/accounts/salesforce/login/callback/
Salesforce OAuth2 documentation
https://developer.salesforce.com/page/Digging_Deeper_into_OAuth_2.0_on_Force.com
To Use:
- Include allauth.socialaccount.providers.salesforce in INSTALLED_APPS
- In a new Salesforce Developer Org, create a Connected App
with OAuth (minimum scope id, openid), and a callback URL
- Create a Social application in Django admin, with client id,
client key, and login_url (in "key" field)
Shopify
-------
The Shopify provider requires a ``shop`` parameter to login. For
example, for a shop ``petstore.myshopify.com``, use this::
/accounts/shopify/login/?shop=petstore
You can create login URLs like these as follows:
.. code-block:: python
{% provider_login_url "shopify" shop="petstore" %}
For setting up authentication in your app, use this url as your ``App URL``
(if your server runs at localhost:8000)::
http://localhost:8000/accounts/shopify/login/
And set ``Redirection URL`` to::
http://localhost:8000/accounts/shopify/login/callback/
**Embedded Apps**
If your Shopify app is embedded you will want to tell allauth to do the required JS (rather than server) redirect.::
SOCIALACCOUNT_PROVIDERS = {
'shopify': {
'IS_EMBEDDED': True,
}
}
Note that there is more an embedded app creator must do in order to have a page work as an iFrame within
Shopify (building the x_frame_exempt landing page, handing session expiration, etc...).
However that functionality is outside the scope of django-allauth.
**Online/per-user access mode**
Shopify has two access modes, offline (the default) and online/per-user. Enabling 'online' access will
cause all-auth to tie the logged in Shopify user to the all-auth account (rather than the shop as a whole).::
SOCIALACCOUNT_PROVIDERS = {
'shopify': {
'AUTH_PARAMS': {'grant_options[]': 'per-user'},
}
}
Slack
-----
App registration (get your key and secret here)
https://api.slack.com/apps/new
Development callback URL
http://example.com/accounts/slack/login/callback/
API documentation
https://api.slack.com/docs/sign-in-with-slack
SoundCloud
----------
SoundCloud allows you to choose between OAuth1 and OAuth2. Choose the latter.
App registration (get your key and secret here)
http://soundcloud.com/you/apps/new
Development callback URL
http://example.com/accounts/soundcloud/login/callback/
Stack Exchange
--------------
Register your OAuth2 app over at ``http://stackapps.com/apps/oauth/register``.
Do not enable "Client Side Flow". For local development you can simply use
"localhost" for the OAuth domain.
As for all providers, provider specific data is stored in
``SocialAccount.extra_data``. For Stack Exchange we need to choose what data to
store there by choosing the Stack Exchange site (e.g. Stack Overflow, or
Server Fault). This can be controlled by means of the ``SITE`` setting:
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'stackexchange': {
'SITE': 'stackoverflow',
}
}
Stripe
------
You register your OAUth2 app via the Connect->Settings page of the Stripe
dashboard:
https://dashboard.stripe.com/account/applications/settings
This page will provide you with both a Development and Production `client_id`.
You can also register your OAuth2 app callback on the Settings page in the
"Website URL" box, e.g.:
http://example.com/accounts/stripe/login/callback/
However, the OAuth2 secret key is not on this page. The secret key is the same
secret key that you use with the Stripe API generally. This can be found on the
Stripe dashboard API page:
https://dashboard.stripe.com/account/apikeys
See more in documentation
https://stripe.com/docs/connect/standalone-accounts
Twitch
------
App registration (get your key and secret here)
http://www.twitch.tv/kraken/oauth2/clients/new
Twitter
-------
You will need to create a Twitter app and configure the Twitter provider for
your Django application via the admin interface.
App registration
****************
To register an app on Twitter you will need a Twitter account. With an account, you
can create a new app via::
https://apps.twitter.com/app/new
In the app creation form fill in the development callback URL::
http://127.0.0.1:8000/accounts/twitter/login/callback/
Twitter won't allow using http://localhost:8000.
For production use a callback URL such as::
http://{{yourdomain}}.com/accounts/twitter/login/callback/
To allow users to login without authorizing each session, select "Allow this
application to be used to Sign in with Twitter" under the application's
"Settings" tab.
App database configuration through admin
****************************************
The second part of setting up the Twitter provider requires you to configure
your Django application. Configuration is done by creating a Socialapp object
in the admin. Add a social app on the admin page::
/admin/socialaccount/socialapp/
Use the twitter keys tab of your application to fill in the form. It's located::
https://apps.twitter.com/app/{{yourappid}}/keys
The configuration is as follows:
* Provider, "Twitter"
* Name, your pick, suggest "Twitter"
* Client id, is called "Consumer Key (API Key)" on Twitter
* Secret key, is called "Consumer Secret (API Secret)" on Twitter
* Key, is not needed, leave blank
Untappd
-------
App registration
****************
https://untappd.com/api/register?register=new
In the app creation form fill in the development callback URL, e.g.::
http://127.0.0.1:8000/accounts/untappd/login/callback/
For production, make it your production host, e.g.::
http://yoursite.com/accounts/untappd/login/callback/
SocialApp configuration
***********************
The configuration values come from your API dashboard on Untappd:
https://untappd.com/api/dashboard
* Provider: "Untappd"
* Name: "Untappd"
* Client id: "Client ID" from Untappd
* Secret key: "Client Secret" from Untappd
* Sites: choose your site
Telegram
--------
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'telegram': {
'TOKEN': 'insert-token-received-from-botfather'
}
}
Vimeo
-----
App registration (get your key and secret here)
https://developer.vimeo.com/apps
Development callback URL
http://localhost:8000/a
Vimeo (OAuth 2)
-----
App registration (get your key and secret here)
https://developer.vimeo.com/apps
Development callback URL
http://localhost:8000/accounts/vimeo_oauth2/login/callback/
VK
--
App registration
https://vk.com/editapp?act=create
Development callback URL ("Site address")
http://localhost
Windows Live
------------
The Windows Live provider currently does not use any settings in
``SOCIALACCOUNT_PROVIDERS``.
App registration (get your key and secret here)
https://apps.dev.microsoft.com/#/appList
Development callback URL
http://localhost:8000/accounts/windowslive/login/callback/
Microsoft calls the "client_id" an "Application Id" and it is a UUID. Also,
the "client_secret" is not created by default, you must edit the application
after it is created, then click "Generate New Password" to create it.
Weibo
-----
Register your OAuth2 app over at ``http://open.weibo.com/apps``. Unfortunately,
Weibo does not allow for specifying a port number in the authorization
callback URL. So for development purposes you have to use a callback url of
the form ``http://127.0.0.1/accounts/weibo/login/callback/`` and run
``runserver 127.0.0.1:80``.
Weixin
------
The Weixin OAuth2 documentation:
https://open.weixin.qq.com/cgi-bin/showdocument?action=dir_list&t=resource/res_list&verify=1&id=open1419316505&token=&lang=zh_CN
Weixin supports two kinds of oauth2 authorization, one for open platform and
one for media platform, AUTHORIZE_URL is the only difference between them, you
can specify ``AUTHORIZE_URL`` in setting, If no ``AUTHORIZE_URL`` value is set
will support open platform by default, which value is
``https://open.weixin.qq.com/connect/qrconnect``.
You can optionally specify additional scope to use. If no ``SCOPE`` value
is set, will use ``snsapi_login`` by default(for Open Platform Account, need
registration). Other ``SCOPE`` options are: snsapi_base, snsapi_userinfo.
.. code-block:: python
SOCIALACCOUNT_PROVIDERS = {
'weixin': {
'AUTHORIZE_URL': 'https://open.weixin.qq.com/connect/oauth2/authorize', # for media platform
'SCOPE': ['snsapi_base'],
}
}
Xing
----
App registration (get your key and secret here)
https://dev.xing.com/applications
Development callback URL
http://localhost:8000
Yahoo
------
Register your OAuth2 app below and enter the resultant client id and secret into admin
https://developer.yahoo.com/apps/create/
|