Users & Permissions providers
Strapi comes with a predefined set of built-in providers for the Users & Permissions feature. Custom providers can also be configured (see the dedicated guide).
Understanding the login flow
Grant and Purest allow you to use OAuth and OAuth2 providers to enable authentication in your application.
For a better understanding, review the following description of the login flow. The example uses github
as the provider but it works the same for other providers.
Let's say that:
- Strapi's backend is located at:
strapi.website.com
, and - Your app frontend is located at:
website.com
- The user goes on your frontend app (
https://website.com
) and clicks on your buttonconnect with Github
. - The frontend redirects the tab to the backend URL:
https://strapi.website.com/api/connect/github
. - The backend redirects the tab to the GitHub login page where the user logs in.
- Once done, Github redirects the tab to the backend URL:
https://strapi.website.com/api/connect/github/callback?code=abcdef
. - The backend uses the given
code
to get anaccess_token
from Github that can be used for a period of time to make authorized requests to Github to get the user info. - Then, the backend redirects the tab to the url of your choice with the param
access_token
(example:http://website.com/connect/github/redirect?access_token=eyfvg
). - The frontend (
http://website.com/connect/github/redirect
) calls the backend withhttps://strapi.website.com/api/auth/github/callback?access_token=eyfvg
that returns the Strapi user profile with itsjwt
.
(Under the hood, the backend asks Github for the user's profile and a match is done on Github user's email address and Strapi user's email address). - The frontend now possesses the user's
jwt
, which means the user is connected and the frontend can make authenticated requests to the backend!
An example of a frontend app that handles this flow can be found here: react login example application.
Setting up the server URL
Before setting up a provider you must specify the absolute URL of your backend in /config/server
:
- JavaScript
- TypeScript
module.exports = ({ env }) => ({
host: env('HOST', '0.0.0.0'),
port: env.int('PORT', 1337),
url: env('', 'http://localhost:1337'),
});
export default ({ env }) => ({
host: env('HOST', '0.0.0.0'),
port: env.int('PORT', 1337),
url: env('', 'http://localhost:1337'),
});
Later you will give this URL to your provider.
For development, some providers accept the use of localhost urls but many don't. In this case we recommend to use ngrok (ngrok http 1337
) that will make a proxy tunnel from a url it created to your localhost url (e.g., url: env('', 'https://5299e8514242.ngrok.io'),
).
Setting up the provider - Examples
Instead of a generic explanation we decided to show an example for each provider. You can also create your own custom provider.
In the following examples, the frontend application will be the react login example application running on http://localhost:3000
, while Strapi (i.e., the backend server) will be running on http://localhost:1337
.
Auth0
Configure authentication through the Users & Permissions feature with Auth0.
AWS Cognito
Configure authentication through the Users & Permissions feature with AWS Cognito.
CAS
Configure authentication through the Users & Permissions feature with CAS.
Discord
Configure authentication through the Users & Permissions feature with Discord.
Configure authentication through the Users & Permissions feature with Facebook.
GitHub
Configure authentication through the Users & Permissions feature with GitHub.
Configure authentication through the Users & Permissions feature with Google.
Configure authentication through the Users & Permissions feature with Instagram.
Keycloak
Configure authentication through the Users & Permissions feature with Keycloak.
Configure authentication through the Users & Permissions feature with LinkedIn.
Patreon
Configure authentication through the Users & Permissions feature with Patreon.
Configure authentication through the Users & Permissions feature with Reddit.
Twitch
Configure authentication through the Users & Permissions feature with Twitch.
Configure authentication through the Users & Permissions feature with Twitter.
VK
Configure authentication through the Users & Permissions feature with VK.
If you want to create and add a new custom provider, please refer to the following guide: