-
Notifications
You must be signed in to change notification settings - Fork 7
Allow all oauth2 authorize params to be passed while using login. #171
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,12 @@ export const TEST_CONFIG: FusionAuthProviderConfig = { | |
scope: 'openid email profile offline_access', | ||
postLogoutRedirectUri: 'http://localhost', | ||
}; | ||
|
||
export const TEST_AUTHPARAM_CONFIG: FusionAuthProviderConfig = { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If possible, I would recommend consolidating this object with the one above because they are almost the same--maybe someone will be confused by this in the future. Perhaps we could strip the |
||
clientId: '85a03867-dccf-4882-adde-1a79aeec50df', | ||
serverUrl: 'http://localhost:9000', | ||
redirectUri: 'http://localhost', | ||
scope: 'openid email profile offline_access', | ||
authParams: [{ idp_hint: '44449786-3dff-42a6-aac6-1f1ceecb6c46' }], | ||
postLogoutRedirectUri: 'http://localhost', | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good call adding a link to FA docs in this comment. I find that kind of thing helpful as a user of someone else's libraries.