Auth Provider
Auth provider is an object that contains methods to handle authentication and access control in your app by having Refine consume them. These methods expect to return a promise, so they can be used with async methods.
- You can use any third-party authentication service like Auth0, Okta, etc. or your own custom methods while creating an auth provider from scratch.
- Auth Provider is not required for Refine to work, if it is not provided, your application will not have any authentication capabilities. As a result, you will not be able to use any of the auth hooks or components.
- To learn more about how to create your own auth provider, refer to the Create an Auth Provider tutorial →.
Usage
To activate authentication in your app, you need to pass an authProvider
to the <Refine/>
as a prop:
import { Refine } from "@refinedev/core";
import authProvider from "./auth-provider";
const App = () => {
return <Refine authProvider={authProvider} />;
};
Examples
You can use the following auth provider examples as a starting point for your own auth provider or you can use them as it is. Check the links below to see the details of each example.
- Basic - A basic auth provider example.
- Okta - Okta, the enterprise-grade identity management service.
- Keycloak - An auth provider example with Keycloak.
- Auth0 - An auth provider example with Auth0.
- Google Auth - An auth provider example with Google Auth.
- OTP Login - An auth provider example with OTP Login.
- Appwrite - An auth provider example with Appwrite.
- Supabase - An auth provider example with Supabase.
- Strapi - An auth provider example with Strapi.
- Basic with Nextjs - A basic auth provider example with Nextjs.
- Basic with Remix - A basic auth provider example with Remix.
- Kinde - An auth provider example with Kinde.
Methods
An authProvider
can contain the following methods:
import type { AuthProvider } from "@refinedev/core";
const authProvider: AuthProvider = {
// required methods
login: async (params: any): AuthActionResponse,
check: async (params: any): CheckResponse,
logout: async (params: any): AuthActionResponse,
onError: async (params: any): OnErrorResponse,
// optional methods
register: async (params: any): AuthActionResponse,
forgotPassword: async (params: any): AuthActionResponse,
updatePassword: async (params: any): AuthActionResponse,
getPermissions: async (params: any): unknown,
getIdentity: async (params: any): unknown,
};
All methods can have any parameters that you want to pass to them. However, the return types of the methods are fixed. You can find the details below.
Required Methods
login
login
method is used to authenticate users. It expects to return a resolved promise with the following type:
type AuthActionResponse = {
success: boolean;
redirectTo?: string;
error?: Error;
[key: string]: unknown;
};
success
: Determines whether the operation is successful or not.redirectTo
: The path of the page that the user will be redirected to after the operation is completed.error
: An object containing details about any errors encountered during the operation.[key: string]
: Any additional data you wish to include in the response, keyed by a string identifier.
As an example, let's create a simple login
method that checks if the user exists in the mock data. If the user exists, we will save the user's data to the local storage and redirect the user to the home page. If the user doesn't exist, we will return an error.
import { AuthProvider } from "@refinedev/core";
const mockUsers = [{ email: "john@mail.com" }, { email: "jane@mail.com" }];
const authProvider: AuthProvider = {
login: async ({ email, password }) => {
// Suppose we actually send a request to the back end here.
const user = mockUsers.find((item) => item.email === email);
if (user) {
localStorage.setItem("auth", JSON.stringify(user));
return {
success: true,
redirectTo: "/",
};
}
return {
success: false,
error: {
message: "Login Error",
name: "Invalid email or password",
},
};
},
// ---
};
Refine will consume this method using the useLogin
hook which is used for login operations.
For example, if we call the useLogin
hook's mutation like this:
import { useLogin } from "@refinedev/core";
const { mutate } = useLogin();
mutate({ email: "john@mail.com", password: "123456" });
The login
method will get the mutation's parameters as arguments.
For more information, refer to the
useLogin
documentation.
FAQ
Can I pass any parameters to the login
method?
You can pass any parameters to the login
method. useLogin
hook's mutation will pass the mutation's parameters to the method without any type constraints.
const { mutate } = useLogin<{
username: string;
password: string;
foo: string;
remember: boolean;
}>();
How can I redirect the user to a specific page after login?
If you want to redirect the user to a specific page, you can resolve the promise with an object that has the redirectTo
property.
const authProvider: AuthProvider = {
// ---
login: async () => {
// ---
if (user) {
return {
success: true,
redirectTo: "/custom-page",
};
} else {
return {
success: false,
redirectTo: "/register",
};
}
},
};
You can also use the useLogin
hook's for this purpose:
const { mutate } = useLogin();
mutate({ redirectPath: "/custom-page" });
Then use the redirectPath
parameter in the login
method to redirect the user to the specific page:
const authProvider: AuthProvider = {
// ---
login: async ({ redirectPath }) => {
//---
return {
success: false,
redirectTo: redirectPath,
};
},
};
If you don't want to redirect the user anywhere, you can resolve the login
method's promise with redirectTo: undefined
.
const authProvider: AuthProvider = {
// ---
login: async () => {
// ---
return {
success: false,
redirectTo: undefined,
};
},
};
How can I customize the error message?
Refine automatically displays an error notification when the login
method resolves the promise with success: false
. If you want to customize the error message, you can resolve the promise with an error
object that has name
and message
properties.
import { AuthProvider } from "@refinedev/core";
const authProvider: AuthProvider = {
login: async ({ email, password }) => {
// ---
return {
success: false,
error: {
name: "Login Failed!",
message:
"The email or password that you've entered doesn't match any account.",
},
};
},
// ---
};
check
The check
method is used to check if the user is authenticated. It is internally called when the user navigates to a page that requires authentication. This method expects to return a resolved promise with the following type:
type CheckResponse = {
authenticated: boolean;
redirectTo?: string;
logout?: boolean;
error?: Error;
};
authenticated
: A boolean value indicating whether the user is authenticated or not.redirectTo
: A string value indicating the URL to redirect to if authentication is required.logout
: A boolean value indicating whether the user should be logged out.error
: An Error object representing any errors that may have occurred during the check.
Since we saved the user data to the local storage in the login
method, we will check that to determine if the user is authenticated:
import { AuthProvider } from "@refinedev/core";
const authProvider: AuthProvider = {
// ---
check: async () => {
const user = localStorage.getItem("auth");
if (user) {
return {
authenticated: true,
};
}
return {
authenticated: false,
logout: true,
redirectTo: "/login",
error: {
message: "Check failed",
name: "Unauthorized",
},
};
},
// ---
};
Refine will consume this method using the useIsAuthenticated
hook which is used for checking if the user is authenticated.
import { useIsAuthenticated } from "@refinedev/core";
const { data, isSuccess, isLoading, isError } = useIsAuthenticated();
For more information, refer to the
useIsAuthenticated
documentation.
FAQ
How can I redirect the user if they are not authenticated?
If you want to redirect the user to a specific page, you can resolve the Promise with an object that has redirectTo
property.
const authProvider: AuthProvider = {
// ---
check: async () => {
// ---
return {
authenticated: false,
redirectTo: "/custom-page",
};
},
};
logout
The logout
method is used to log out users. It expects to return a resolved promise with the following type:
type AuthActionResponse = {
success: boolean;
redirectTo?: string;
error?: Error;
[key: string]: unknown;
};
success
: Determines whether the operation is successful or not.redirectTo
: The path of the page that the user will be redirected to after the operation is completed.error
: An object containing details about any errors encountered during the operation.[key: string]
: Any additional data you wish to include in the response, keyed by a string identifier.
Opposite to what we did in the login
method, we now need to remove the user data from the local storage upon log out:
import { AuthProvider } from "@refinedev/core";
const authProvider: AuthProvider = {
// ---
logout: async () => {
localStorage.removeItem("auth");
return {
success: true,
redirectTo: "/login",
};
},
// ---
};
Refine will consume this method using the useLogout
hook which is used for logging out users.
For example, if we call the useLogout
hook's mutation like this:
import { useLogout } from "@refinedev/core";
const { mutate } = useLogout();
mutate({ userId: "123" });
The logout
method will get the mutation's parameters as an argument.
For more information, refer to the
useLogout
documentation.
FAQ
Can I pass any parameters to the logout
method?
Yes, you can pass any parameters to the logout
method. The useLogout
hook's mutation will pass the mutation's parameters to the logout
method without any type constraints.
const { mutate } = useLogout<{
id: string;
name: string;
}>();
How can I redirect the user to a specific page after logout?
If you want to redirect the user to a specific page, you can resolve the promise with an object that has the redirectTo
property.
const authProvider: AuthProvider = {
// ---
logout: async () => {
// ---
return {
success: true,
redirectTo: "/login",
};
},
};
You can also use the useLogout
hook for this purpose:
const { mutate } = useLogout();
mutate({ redirectPath: "/custom-page" });
Then use the redirectPath
parameter in the logout
method to redirect the user to the specific page:
const authProvider: AuthProvider = {
// ---
logout: ({ redirectPath }) => {
// ---
return {
success: true,
redirectTo: redirectPath,
};
},
};
If you don't want to redirect the user to anywhere, you can resolve the logout
method's Promise with redirectTo: undefined
.
const authProvider: AuthProvider = {
// ---
logout: async () => {
// ---
return {
success: true,
redirectTo: undefined,
};
},
};
How can I customize the error message?
Refine automatically displays an error notification when the logout
method resolves the Promise with success: false
. If you want to customize the error message, you can resolve the Promise with an error
object that has name
and message
properties.
import { AuthProvider } from "@refinedev/core";
const authProvider: AuthProvider = {
logout: async () => {
// ---
return {
success: false,
error: {
name: "Logout Failed!",
message: "Something went wrong.",
},
};
},
// ---
};
onError
onError
method is called when you get an error response from the API. You can create your own business logic to handle the error such as refreshing the token, logging out the user, etc.
onError
method expects to return a Promise with the following type:
type OnErrorResponse = {
redirectTo?: string;
logout?: boolean;
error?: Error;
};
redirectTo
: If has a value, the app will be redirected to the given URL.logout
: If istrue
, useOnError calls thelogout
method.error
: An Error object representing any errors that may have occurred during the operation.
We'll use the onError
method to log out the user if the API returns a 401
or 403
error. If redirectTo
is set, logout
method will be called with the redirectTo
value.
import { AuthProvider } from "@refinedev/core";
const authProvider: AuthProvider = {
// ---
onError: async (error) => {
if (error.status === 401 || error.status === 403) {
return {
logout: true,
redirectTo: "/login",
error,
};
}
return {};
},
// ---
};
Refine will consume this method using the useOnError
hook which is used for handling errors.
import { useOnError } from "@refinedev/core";
const { mutate } = useOnError();
fetch("http://example.com/payment")
.then(() => console.log("Success"))
.catch((error) => mutate(error));
For more information, refer to the
useOnError
documentation.
FAQ
How can I redirect the user to a specific page after logout?
If you want to redirect the user to a specific page, you can resolve the promise with an object that has redirectTo
property.
const authProvider: AuthProvider = {
// ---
onError: async (error) => {
if (error.status === 401 || error.status === 403) {
return {
redirectTo: "/custom-page",
};
}
return {};
},
// ---
};
Optional Methods
getPermissions
getPermissions
method is used to get the user's permissions. It expects to return a resolved promise.
We will use the getPermissions
method to get the user's permissions from the localStorage
.
import { AuthProvider } from "@refinedev/core";
const mockUsers = [
{ email: "john@mail.com", roles: ["admin"] },
{ email: "jane@mail.com", roles: ["editor"] },
];
const authProvider: AuthProvider = {
// You can also pass a parameter but it is optional
getPermissions: (params) => {
if (params) {
// do some logic or make a request to server
} else {
const user = localStorage.getItem("auth");
if (user) {
const { roles } = JSON.parse(user);
return roles;
}
}
return null;
},
// ---
};
Refine will consume this method using the usePermissions
hook which is used for getting the user's permissions.
For example, if you want to check if the user has a specific permission, you can use the usePermissions
hook like this:
import { usePermissions } from "@refinedev/core";
const { data } = usePermissions();
if (data?.includes("admin")) {
console.log("User has admin permissions");
}
For more information, refer to the
usePermissions
documentation.
Though usePermissions
hook can be used for simple authorization purposes, if you need more complex authorization logic, we recommend using the access control provider.
For more information, refer to the accessControlProvider
documentation→
getIdentity
getIdentity
method is used to get the user's identity. It expects to return a resolved promise.
To get the user's identity from the local storage and resolve the promise:
import { AuthProvider } from "@refinedev/core";
const mockUsers = [
{ email: "john@mail.com", roles: ["admin"] },
{ email: "jane@mail.com", roles: ["editor"] },
];
const authProvider: AuthProvider = {
// ---
getIdentity: async () => {
const user = localStorage.getItem("auth");
if (user) {
const { email, roles } = JSON.parse(user);
return { email, roles };
}
return null;
},
// ---
};
Refine will consume this method using the useGetIdentity
hook which is used for getting the user's identity.
For example, if you want to get the user's email, you can use the useGetIdentity
hook like this:
import { useGetIdentity } from "@refinedev/core";
const { data } = useGetIdentity();
if (data) {
console.log(data.email);
}
For more information, refer to the
useGetIdentity
documentation.
register
register
method is used to register a new user. It is similar to the login
method. It expects to return a resolved promise with the following type:
type AuthActionResponse = {
success: boolean;
redirectTo?: string;
error?: Error;
[key: string]: unknown;
};
success
: Determines whether the operation is successful or not.redirectTo
: The path of the page that the user will be redirected to after the operation is completed.error
: An object containing details about any errors encountered during the operation.[key: string]
: Any additional data you wish to include in the response, keyed by a string identifier.
We'll register a new user and resolve the promise.
import { AuthProvider } from "@refinedev/core";
const mockUsers = [{ email: "john@mail.com" }, { email: "jane@mail.com" }];
const authProvider: AuthProvider = {
// ---
register: async ({ email }) => {
const user = mockUsers.find((user) => user.email === email);
if (user) {
return {
success: false,
error: {
name: "Register Error",
message: "User already exists",
},
};
}
mockUsers.push({ email });
return {
success: true,
redirectTo: "/login",
};
},
// ---
};
Refine will consume this method using the useRegister
hook which is used for registering a new user.
For example, if you want to register a new user, you can use the useRegister
hook like this:
import { useRegister } from "@refinedev/core";
const { mutate } = useRegister();
const handleRegister = (values) => {
mutate(values);
};
The register
method will get the mutation's parameters as arguments.
For more information, refer to the
useRegister
documentation.
FAQ
Can I pass any parameters to the register
method?
Yes, you can pass any parameters to the register
method. useRegister
hook's mutation will pass the mutation's parameters to the register
method without any type constraints.
const { mutate } = useRegister<{
username: string;
email: string;
password: string;
confirmPassword: string;
remember: boolean;
}>();
How can I redirect the user to a specific page after registration?
If you want to redirect the user to a specific page, you can resolve the Promise with an object that has redirectTo
property.
const authProvider: AuthProvider = {
// ---
register: async () => {
// ---
return {
success: true, // or false
redirectTo: "/custom-page",
};
},
};
You can also use the useRegister
hook's for this purpose:
const { mutate } = useRegister();
mutate({ redirectPath: "/custom-page" });
Then use the redirectPath
parameter in the register
method to redirect the user to the specific page:
const authProvider: AuthProvider = {
// ---
register: async ({ redirectPath }) => {
// ---
return {
success: true, // or false
redirectTo: redirectPath,
};
},
};
If you don't want to redirect the user to anywhere, you can resolve the register
method's Promise with redirectTo: undefined
.
const authProvider: AuthProvider = {
// ---
register: async () => {
// ---
return {
success: true, // or false
redirectTo: undefined,
};
},
};
How can I customize the error message?
Refine automatically displays an error notification when the register
method resolves the Promise with success: false
. If you want to customize the error message, you can resolve the Promise with an error
object that has name
and message
properties.
const authProvider: AuthProvider = {
// ---
register: async () => {
// ---
return {
success: false,
error: {
name: "Error",
message: "Something went wrong!",
},
};
},
};
forgotPassword
forgotPassword
method is used to send a password reset link to the user's email address. It expects to return a resolved promise with the following type:
type AuthActionResponse = {
success: boolean;
redirectTo?: string;
error?: Error;
[key: string]: unknown;
};
success
: Determines whether the operation is successful or not.redirectTo
: The path of the page that the user will be redirected to after the operation is completed.error
: An object containing details about any errors encountered during the operation.[key: string]
: Any additional data you wish to include in the response, keyed by a string identifier.
To send a password reset link to the user's email address and resolve the promise:
import { AuthProvider } from "@refinedev/core";
const authProvider: AuthProvider = {
// ---
forgotPassword: async ({ email }) => {
// send password reset link to the user's email address here
// if request is successful
return {
success: true,
redirectTo: "/login",
};
// if request is not successful
return {
success: false,
error: {
name: "Forgot Password Error",
message: "Email address does not exist",
},
};
},
// ---
};
Refine will consume this method using the useForgotPassword
hook which is used for sending a password reset link to the user's email address.
For example, if you want to send a password reset link to the user's email address, you can use the useForgotPassword
hook like this:
import { useForgotPassword } from "@refinedev/core";
const { mutate } = useForgotPassword();
const handleForgotPassword = (values) => {
mutate(values);
};
The forgotPassword
method will get the mutation's parameters as arguments.
For more information, refer to the
useForgotPassword
documentation.
FAQ
Can I pass any parameters to the forgotPassword
method?
Yes, you can pass any parameters to the forgotPassword
method. useForgotPassword
hook's mutation will pass the mutation's parameters to the forgotPassword
method without any type constraints.
const { mutate } = useForgotPassword<{
email: string;
}>();
How can I redirect the user to a specific page after sending the password reset link?
If you want to redirect the user to a specific page, you can resolve the forgotPassword
method's Promise with the path of the page.
const authProvider: AuthProvider = {
// ---
forgotPassword: async () => {
// ---
return {
success: true,
redirectTo: "/login",
};
},
};
Also, you can use the useForgotPassword
hook's for this purpose.
const { mutate } = useForgotPassword();
useForgotPassword({ redirectPath: "/custom-page" });
Then, you can use the redirectPath
parameter in the forgotPassword
method to redirect the user to the specific page.
const authProvider: AuthProvider = {
// ---
forgotPassword: async ({ redirectPath }) => {
// ---
return {
success: true,
redirectTo: redirectPath,
};
},
};
How can I customize the error message?
Refine automatically displays an error notification when the forgotPassword
method resolves the Promise with success: false
. If you want to customize the error message, you can resolve the Promise with an object that has name
and message
properties.
const authProvider: AuthProvider = {
// ---
forgotPassword: async () => {
// ---
return {
success: false,
error: {
name: "Error",
message: "Something went wrong!",
},
};
},
};
updatePassword
updatePassword
method is used to update the user's password. It expects to return a resolved promise with the following type:
type AuthActionResponse = {
success: boolean;
redirectTo?: string;
error?: Error;
[key: string]: unknown;
};
success
: Determines whether the operation is successful or not.redirectTo
: The path of the page that the user will be redirected to after the operation is completed.error
: An object containing details about any errors encountered during the operation.[key: string]
: Any additional data you wish to include in the response, keyed by a string identifier.
To update the user's password and resolve the promise:
import { AuthProvider } from "@refinedev/core";
const authProvider: AuthProvider = {
// ---
updatePassword: async ({ password }) => {
// update the user's password here
// if request is successful
return {
success: true,
redirectTo: "/login",
};
// if request is not successful
return {
success: false,
error: {
name: "Forgot Password Error",
message: "Email address does not exist",
},
};
},
// ---
};
Refine will consume this method using the useUpdatePassword
hook which is used to update the user's password.
For example, if you want to update the user's password, you can use the useUpdatePassword
hook like this:
import { useUpdatePassword } from "@refinedev/core";
const { mutate } = useUpdatePassword();
const handleUpdatePassword = ({ password, confirmPassword }) => {
mutate({ password, confirmPassword }});
};
Additionally, the updatePassword
method will take query parameters as arguments from the URL.
If we assume that the URL is http://localhost:3000/reset-password?token=123
, the updatePassword
method will get the mutation's parameters as arguments and the token
query parameter as well.
const authProvider: AuthProvider = {
// ---
updatePassword: async ({ password, confirmPassword, token }) => {
console.log(token); // 123
// if request is successful
return {
success: true,
redirectTo: "/login",
};
},
};
For more information, refer to the
useUpdatePassword
documentation.
FAQ
Can I pass any parameters to the updatePassword
method?
Yes, you can pass any parameters to the updatePassword
method. useUpdatePassword
hook's mutation will pass the mutation's parameters to the updatePassword
method without any type constraints.
const { mutate } = useUpdatePassword<{
password: string;
newPassword: string;
}>();
How can I redirect the user to a specific page after updating the password?
If you want to redirect the user to a specific page, you can resolve the Promise with an object that has redirectTo
property.
const authProvider: AuthProvider = {
// ---
updatePassword: async () => {
// ---
return {
success: true,
redirectTo: "/login",
};
},
};
You can also use the useUpdatePassword
hook's for this purpose:
const { mutate } = useUpdatePassword();
useUpdatePassword({ redirectPath: "/custom-page" });
Then use the redirectPath
parameter in the updatePassword
method to redirect the user to the specific page:
const authProvider: AuthProvider = {
// ---
updatePassword: async ({ redirectPath }) => {
// ---
return {
success: true,
redirectTo: redirectPath,
};
},
};
How can I customize the error message?
Refine automatically displays an error notification when the updatePassword
method resolves the Promise with success: false
. If you want to customize the error message, you can resolve the Promise with an error
object that has name
and message
properties.
const authProvider: AuthProvider = {
// ---
updatePassword: async () => {
// ---
return {
success: false,
error: {
name: "Error",
message: "Something went wrong!",
},
};
},
};
Legacy Auth Provider
Refine's v4 release is backward compatible and supports legacy auth provider implementations until v5.
If you want to use a legacy auth provider, you can pass them to the <Refine />
component using the legacyAuthProvider
prop.
Refer to the Migration Guide for more information. →
import { LegacyAuthProvider, Refine } from "@refinedev/core";
const legacyAuthProvider: LegacyAuthProvider = {
/* --- */
};
const App = () => {
return (
<Refine
// ---
legacyAuthProvider={legacyAuthProvider}
>
{/* --- */}
</Refine>
);
};