File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ This guide will help you quickly integrate Asgardeo authentication into your Rea
2121
22223 . ** Note Down Your Credentials from the ` Quickstart ` tab**
2323 - Copy the ** Client ID** from the application details
24- - Note your ** Base URL** (ex: ` https://api.asgardeo.io/t/<ORGANIZATION > ` )
24+ - Note your ** Base URL** (ex: ` https://api.asgardeo.io/t/<your-organization-name > ` )
2525
26264 . ** Configure Application Settings from the ` Protocol ` tab**
2727 - ** Authorized redirect URLs** : Add your application URLs
@@ -73,8 +73,8 @@ import { AsgardeoProvider } from '@asgardeo/react'
7373createRoot (document .getElementById (' root' )! ).render (
7474 <StrictMode >
7575 <AsgardeoProvider
76- baseUrl = " <Base URL >"
77- clientId = " <CLIENT_ID >"
76+ baseUrl = " <your-organization-base-url >"
77+ clientId = " <your-app-client-id >"
7878 >
7979 <App />
8080 </AsgardeoProvider >
@@ -83,8 +83,8 @@ createRoot(document.getElementById('root')!).render(
8383```
8484
8585Replace:
86- - ` <Base URL > ` with the Base URL you noted in Step 1 (e.g., ` https://api.asgardeo.io/t/<ORGANIZATION > ` )
87- - ` <CLIENT_ID > ` with the Client ID from Step 1
86+ - ` <your-organization-base-url > ` with the Base URL you noted in Step 1 (e.g., ` https://api.asgardeo.io/t/<your-organization-name > ` )
87+ - ` <your-app-client-id > ` with the Client ID from Step 1
8888
8989## Step 4: Add Sign-in & Sign-out to Your App
9090
You can’t perform that action at this time.
0 commit comments