Skip to content

oktadev/okta-react-hooks-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

React Hooks Example

This example app shows how to create a React app and use React Hooks for authentication.

Please read How to Move from Consuming Higher-Order Components to React Hooks to see how this app was created.

Prerequisites:

Okta has Authentication and User Management APIs that reduce development time with instant-on, scalable user infrastructure. Okta's intuitive API and expert support make it easy for developers to authenticate, manage and secure users and roles in any application.

Getting Started

To install this example application, run the following commands:

git clone https://github.com/oktadeveloper/okta-react-hooks-example.git
cd okta-react-hooks-example
npm install

Create an OIDC App on Okta

Register a new application by going to Applications > Add Application. On the next screen, choose Single Page App and click Next.

On the following screen, you can edit the application's settings. Make sure that the port number is 3000 and the base URI is http://localhost:3000/. Change the Login Redirect URI to http://localhost:3000/callback. Once you are done, you will see a Client ID.

Configure your Okta Settings

Copy your Okta domain and client ID into src/config.js:

export default {
  oidc: {
    clientId: '{yourClientID}',
    issuer: 'https://{yourOktaDomain}/oauth2/default',
    redirectUri: 'http://localhost:3000/callback',
    scopes: ['openid', 'profile', 'email'],
    pkce: true
  }
}

Start everything with npm start, click the Profile link, and you'll be prompted to login with React and Okta.

Links

This example uses the following open source libraries:

Help

Please post any questions as issues in this repository, or visit our Okta Developer Forums.

License

Apache 2.0, see LICENSE.