react-oidc-client
v2.0.0
Published
A declarative approach to working with oidc-client
Downloads
1,534
Readme
react-oidc-client
The repository provides a declarative approach to working with oidc-client
.
It wraps the different stages of the process in routes and handles everything behind the scenes.
Once authenticated, the children provided to the authentication components are rendered.
Usage
1. Basic Example
import React from "react";
import ReactDOM from "react-dom";
import { Authenticate } from "react-oidc-client";
const MySecretContent = () => <div>My secure content</div>;
ReactDOM.render(
<Authenticate
userManagerSettings={{
loadUserInfo: true,
userStore: new WebStorageStateStore({
store: localStorage
}),
authority: "http://localhost:5000",
client_id: "JAVASCRIPT_CLIENT_ID",
redirect_uri: "http://localhost:3000/login_complete",
response_type: "id_token token",
response_mode: "fragment",
scope: "openid profile", // add other scopes here
post_logout_redirect_uri: "http://localhost:3000/logout"
}}
>
<MySecretContent />
</Authenticate>
);
2. Custom Login Complete and Logout Paths
import React from "react";
import ReactDOM from "react-dom";
import { Authenticate } from "react-oidc-client";
const MySecretContent = () => <div>My secure content</div>;
ReactDOM.render(
<Authenticate
loginCompletePath="/my_login_complete_path"
logoutPath="/my_logout_path"
userManagerSettings={{
loadUserInfo: true,
userStore: new WebStorageStateStore({
store: localStorage
}),
authority: "http://localhost:5000",
client_id: "JAVASCRIPT_CLIENT_ID",
redirect_uri: "http://localhost:3000/my_login_complete_path",
response_type: "id_token token",
response_mode: "fragment",
scope: "openid profile", // add other scopes here
post_logout_redirect_uri: "http://localhost:3000/my_logout_path"
}}
>
<MySecretContent />
</Authenticate>
);
3. Custom Loading Component
import React from "react";
import ReactDOM from "react-dom";
import { Authenticate } from "react-oidc-client";
const MySecretContent:React.FC = () => <div>My secure content</div>;
const LoadingComponent:React.FC = ()=<div>My loader</div>
ReactDOM.render(
<Authenticate
LoadingComponent={LoadingComponent}
loginCompletePath="/my_login_complete_path"
logoutPath="/my_logout_path"
userManagerSettings={{
loadUserInfo: true,
userStore: new WebStorageStateStore({
store: localStorage
}),
authority: "http://localhost:5000",
client_id: "JAVASCRIPT_CLIENT_ID",
redirect_uri: "http://localhost:3000/my_login_complete_path",
response_type: "id_token token",
response_mode: "fragment",
scope: "openid profile", // add other scopes here
post_logout_redirect_uri: "http://localhost:3000/my_logout_path"
}}
>
<MySecretContent />
</Authenticate>
);
4. Access Loggedin User Info
import React from "react";
import ReactDOM from "react-dom";
import { Authenticate, useUserIdentity } from "react-oidc-client";
const MySecretContent:React.FC = () => {
const user = useUserIdentity();
return <div>{user.profile.name}</div>
};
const LoadingComponent:React.FC = ()=<div>My loader</div>
ReactDOM.render(
<Authenticate
LoadingComponent={LoadingComponent}
loginCompletePath="/my_login_complete_path"
logoutPath="/my_logout_path"
userManagerSettings={{
loadUserInfo: true,
userStore: new WebStorageStateStore({
store: localStorage
}),
authority: "http://localhost:5000",
client_id: "JAVASCRIPT_CLIENT_ID",
redirect_uri: "http://localhost:3000/my_login_complete_path",
response_type: "id_token token",
response_mode: "fragment",
scope: "openid profile", // add other scopes here
post_logout_redirect_uri: "http://localhost:3000/my_logout_path"
}}
>
<MySecretContent />
</Authenticate>
);
5. Using create-react-app with a non-root relative path
When using create-react-app, one might use the homepage property if the application isn't hosted at the root of the server. See here for more info. If that's the case, you need provide the base name (as specified in the homepage property in order for the user to be redirected back to the appropraite page, as otherwise, the user will be redirected to paths relative to the root. See the example below:
import React from "react";
import ReactDOM from "react-dom";
import { Authenticate, useUserIdentity } from "react-oidc-client";
const MySecretContent:React.FC = () => {
const user = useUserIdentity();
return <div>{user.profile.name}</div>
};
const LoadingComponent:React.FC = ()=<div>My loader</div>
ReactDOM.render(
<Authenticate
basename="/myfolderpath"
LoadingComponent={LoadingComponent}
loginCompletePath="/my_login_complete_path"
logoutPath="/my_logout_path"
userManagerSettings={{
loadUserInfo: true,
userStore: new WebStorageStateStore({
store: localStorage
}),
authority: "http://localhost:5000",
client_id: "JAVASCRIPT_CLIENT_ID",
redirect_uri: "http://localhost:3000/my_login_complete_path",
response_type: "id_token token",
response_mode: "fragment",
scope: "openid profile", // add other scopes here
post_logout_redirect_uri: "http://localhost:3000/my_logout_path"
}}
>
<MySecretContent />
</Authenticate>
);
6. Usage as an alternative to msal
to work with Azure B2C
import React from "react";
import ReactDOM from "react-dom";
import { Authenticate, useUserIdentity } from "react-oidc-client";
const MySecretContent:React.FC = () => {
const user = useUserIdentity();
return <div>{user.profile.name}</div>
};
const LoadingComponent:React.FC = ()=<div>My loader</div>
const adTenant = "ad_tenant";
const appName = "myApp";
const userSignInFlow = "B2C_1A_signup_signin";
const adResoureceId = `https://${adTenant}.onmicrosoft.com/${appName}`
ReactDOM.render(
<Authenticate
basename="/myfolderpath"
LoadingComponent={LoadingComponent}
loginCompletePath="/my_login_complete_path"
logoutPath="/my_logout_path"
userManagerSettings={{
client_id: window.appConfig.ad_clientId,
authority: `https://${adTenant}.b2clogin.com/${adTenant}.onmicrosoft.com/${userSignInFlow}/v2.0`,
redirect_uri: `http://localhost:3000/login_complete`,
popup_redirect_uri: `http://localhost:3000/login_complete`,
response_type: "token id_token",
automaticSilentRenew: true,
response_mode: "fragment",
scope: [
`${adResourceId}/user_impersonation`,
"profile",
"openid"
].join(" "),
post_logout_redirect_uri: `http://localhost:3000/logout`,
loadUserInfo: false
}}
>
<MySecretContent />
</Authenticate>
);