FusionAuth solves the problem of building essential security without adding risk or distracting from your primary application
npm install @fusionauth/react-sdkAn SDK for using FusionAuth in React applications.
- Overview
- Getting Started
- Quickstart
- Installation
- Configuration
- Configuration with NextJS
- Usage
- useFusionAuth
- State Parameter
- Protecting content
- UI Components
- Known issues
- Documentation
- Formatting
- Releases
- Upgrade Policy
This SDK manages authentication state for your React app and provides functionality to login, register, and logout users. It can be easily configured to automatically manage your refresh token and fetch user info.
Your users will be sent to FusionAuth’s themeable hosted login pages and
then log in. After that, they are sent back to your React application.
Once authentication succeeds, the following secure, HTTP-only cookies
will be set:
- app.at - an OAuth Access
Token
- app.rt - a Refreshapp.at
Token
used to obtain a new . This cookie will only be set if
refresh tokens are enabled on your FusionAuth instance.
The access token can be presented to APIs to authorize the request and
the refresh token can be used to get a new access token.
There are 2 ways to interact with this SDK:
1. By hosting your own server that performs the OAuth token exchange and meets the server code requirements for FusionAuth Web SDKs.
2. By using the server hosted on your FusionAuth instance, i.e., not writing your own server code.
If you are hosting your own server, see server code requirements.
You can use this library against any version of FusionAuth or any OIDC
compliant identity server.
If you are new to React development, you may want to start with the Quickstart guide. If you are already familiar with React development, skip to the Installation section.
See the FusionAuth React Quickstart for a full tutorial on using FusionAuth and React.
NPM:
`bash`
npm install @fusionauth/react-sdk
Yarn:
`bash`
yarn add @fusionauth/react-sdk
Wrap your app with FusionAuthProvider.
`jsx
import ReactDOM from 'react-dom/client';
import { FusionAuthProviderConfig, FusionAuthProvider } from '@fusionauth/react-sdk';
const config: FusionAuthProviderConfig = {
clientId: "", // Your app's FusionAuth client id
redirectUri: "", // The URI that the user is directed to after the login/register/logout action
serverUrl: "", // The url of the server that performs the token exchange
shouldAutoFetchUserInfo: true, // Automatically fetch userInfo when logged in. Defaults to false.
shouldAutoRefresh: true, // Enables automatic token refresh. Defaults to false.
onRedirect: (state?: string) => { }, // Optional callback invoked upon redirect back from login or register.
};
ReactDOM.createRoot(document.getElementById("my-app")).render(
)
`
#### Configuration with NextJS
To configure the SDK with Next, install next-client-cookies and pass useCookies into the config object as nextCookieAdapter.
`jsx
'use client'
import { useCookies } from 'next-client-cookies';
export default function Providers({ children }) {
return (
{children}
);
}
`
Remember to wrap your layout in the from next-client-cookies/server.
Vercel has published a guide for rendering third party context providers in server components.
Once your app is wrapped in FusionAuthProvider, you can use useFusionAuth.
`jsx
import { useFusionAuth } from '@fusionauth/react-sdk';
function MyComponent() {
const {
isLoggedIn,
isFetchingUserInfo,
startLogin,
startRegister,
userInfo
} = useFusionAuth()
if (isFetchingUserInfo) {
return
Loading...
if (!isLoggedIn) {
return (
or
if (userInfo?.given_name) {
return
Welcome {userInfo.given_name}!
Alternatively, you may interact with the SDK using the
withFusionAuth higher-order component.#### State Parameter
The
startLogin and startRegister functions accept an optional string parameter: state. The value passed in will be passed to the onRedirect callback on your FusionAuthProviderConfig. Though you may pass any value you would like for the state parameter, it is often used to indicate which page the user was on before redirecting to login or registration, so that the user can be returned to that location after a successful authentication.$3
The
RequireAuth component can be used to protect information from unauthorized users. It takes an optional prop withRole that can be used to ensure the user has a specific role. If an array of roles is passed, the user must have at least one of the roles to be authorized. The Unauthenticated component provides the inverse functionality.`jsx
import { RequireAuth, useFusionAuth } from '@fusionauth/react-sdk';const UserNameDisplay = () => {
const { userInfo } = useFusionAuth();
return (
<>
User: {userInfo.given_name}
// Only displays if user is authenticated
Please log in to view this page
>
);
};
const AdminPanel = () => (
// Only displays if user is authenticated and has 'admin' role
);
`$3
This SDK offers 3 pre-built UI components.
`jsx
import {
FusionAuthLoginButton,
FusionAuthLogoutButton,
FusionAuthRegisterButton
} from '@fusionauth/react-sdk';export const LoginPage = () => (
<>
Welcome, please log in or register
>
);export const AccountPage = () => (
<>
Hello, user!
>
);
`$3
None.
Documentation
These docs are generated with typedoc and configured with typedoc-plugin-markdown.
Formatting
There are several linting packages run when you push to a branch. One is
prettier`. If this fails, you can fix the files from the command line:* npm run install
* npm run prettier -- -w /path/to/file
Doing this will overwrite your file, but fix prettier's objections.
This package is released via GitHub actions.
This library may periodically receive updates with bug fixes, security patches, tests, code samples, or documentation changes.
These releases may also update dependencies, language engines, and operating systems, as we\'ll follow the deprecation and sunsetting policies of the underlying technologies that the libraries use.
This means that after a dependency (e.g. language, framework, or operating system) is deprecated by its maintainer, this library will also be deprecated by us, and may eventually be updated to use a newer version.