To allow users to sign up and log in using their LinkedIn accounts, set ALLOW_LINKED_IN_LOGIN
to True
. To configure LinkedIn login:
Visit LinkedIn Developers while logged into your LinkedIn account and click on Create app.
Fill in the required details. The Callback URL should be set to
https://YOUR_DOMAIN_HERE.COM/swd/accounts/oidc/linkedin/login/callback/
.Once the app is created, LinkedIn will provide a Client ID and Client Secret.
Enter these credentials into the
LINKED_IN_CLIENT_ID
andLINKED_IN_CLIENT_SECRET
variables in yourCONFIG/authentication.py
config file.
Last updated