Skip to content

Commit

Permalink
Support longer sessions through use of refresh_token's
Browse files Browse the repository at this point in the history
  • Loading branch information
matthieusieben committed Jan 9, 2025
1 parent 63146b2 commit 2ed08a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/oauth-client.json/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export async function GET(request: Request) {
client_uri: new URL('/', requestUrl).href,
redirect_uris: [new URL('/', requestUrl).href],
response_types: ['code'],
grant_types: ['authorization_code'],
grant_types: ['authorization_code', 'refresh_token'],
token_endpoint_auth_method: 'none',
scope: OAUTH_SCOPE,
dpop_bound_access_tokens: true,
Expand Down

0 comments on commit 2ed08a8

Please sign in to comment.