-
Notifications
You must be signed in to change notification settings - Fork 67
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
Silent authentication #59
Silent authentication #59
Conversation
If the user add prompt param to the request query string, then the authorize_params method will consider this param when making the request_phase url.
@batalla3692 - Thank you for the PR and apologies for the delay in response here (did not have notifications setup but I do now). I have a quick piece of feedback that I'll post as a review, otherwise this looks fine. |
.gitignore
Outdated
tmp/ | ||
.idea |
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.
IDE files should be in a global .gitignore:
https://help.github.com/articles/ignoring-files/#create-a-global-gitignore
Thanks @joshcanhelp, I remove that rule from .gitignore |
This ignore rules must live in ~/.gitignore_global
19ffe6a
to
710d082
Compare
Thanks @batalla3692! I'll merge this now and release it as soon as possible. We're working on getting ID token validation in for the next release so it will be bundled with that. |
Add silent authentication functionality
Now you can pass
prompt
parameter inredirect_to
path, andauthorize_params
method will add it to the authorization params.Closes #58