Skip to content

Commit 9431713

Browse files
committed
docs: update placeholders in Quickstart guide for clarity
1 parent bed4da6 commit 9431713

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/react/QUICKSTART.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This guide will help you quickly integrate Asgardeo authentication into your Rea
2121

2222
3. **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

2626
4. **Configure Application Settings from the `Protocol` tab**
2727
- **Authorized redirect URLs**: Add your application URLs
@@ -73,8 +73,8 @@ import { AsgardeoProvider } from '@asgardeo/react'
7373
createRoot(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

8585
Replace:
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

0 commit comments

Comments
 (0)