Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Authorizer Example with React JS

Uses @authorizerdev/authorizer-react v2.

Configuration

Update the provider in src/Root.js with your instance details:

<AuthorizerProvider
  config={{
    authorizerURL: 'https://your-instance.example.com', // Base URL of your Authorizer instance
    redirectURL: window.location.href, // URL to redirect to after login
    clientID: 'YOUR_CLIENT_ID', // Client ID from the Authorizer dashboard
  }}
>

Don't forget the stylesheet import (see src/index.js):

import '@authorizerdev/authorizer-react/styles.css';

Authorizer v2 server is configured entirely via CLI flags (no .env / OS env vars), e.g. ./authorizer --database-type sqlite --database-url authorizer.db --admin-secret <secret>

Local Setup

  • Clone the repo git clone https://github.com/authorizerdev/examples.git
  • Change directory to react JS cd with-react
  • Install dependencies npm install
  • Start project npm start