Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add access_type in Authorization URL #59

Open
fgiaretta opened this issue Mar 22, 2025 · 1 comment
Open

Add access_type in Authorization URL #59

fgiaretta opened this issue Mar 22, 2025 · 1 comment
Assignees

Comments

@fgiaretta
Copy link

fgiaretta commented Mar 22, 2025

We would like to add the following line to the authorization URL in the existing code:

access_type: config.accessType,

This needs to be included in the client.authorizationUrl() function call in the authorize or connect steps, as shown below:

const url = client.authorizationUrl({
    scope: config.scope,
    code_challenge: code_challenge,
    code_challenge_method: "S256",
    state,
    prompt: config.prompt,
    access_type: config.accessType,  // <-- Add this line
});

This addition allows the OAuth flow to include the access_type parameter, which can be used to specify the type of access requested (e.g., offline access for refresh tokens).

@jayair
Copy link
Contributor

jayair commented Mar 28, 2025

Is this OpenAuth related?

@jayair jayair self-assigned this Mar 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants