Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions examples/nextjs-vercel-mcp-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const userToken =
"user-id",
["read", "write"],
{ withRefreshToken: false },
"tenant-id"
"tenant-id",
);

// Fetch latest user token
Expand All @@ -82,7 +82,7 @@ const latestUserToken =
"my-app-id",
"user-id",
"tenant-id",
{ forceRefresh: false }
{ forceRefresh: false },
);

// Fetch tenant token with specific scopes
Expand All @@ -91,15 +91,15 @@ const tenantToken =
"my-app-id",
"tenant-id",
["read", "write"],
{ withRefreshToken: false }
{ withRefreshToken: false },
);

// Fetch latest tenant token
const latestTenantToken =
await descopeClient.management.outboundApplication.fetchTenantToken(
"my-app-id",
"tenant-id",
{ forceRefresh: false }
{ forceRefresh: false },
);
```

Expand Down
Loading