Skip to content
Closed
Changes from 1 commit
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
Next Next commit
allow passing more parameters when generating auth uri
  • Loading branch information
nwalsh-lnk committed Mar 3, 2020
commit 8e1ad00f70a872313db68eba3b19cacddd61455c
2 changes: 2 additions & 0 deletions msal/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,7 @@ def get_authorization_request_url(
You will have to specify a value explicitly.
Its valid values are defined in Open ID Connect specs
https://openid.net/specs/openid-connect-core-1_0.html#AuthRequest
:param kwargs: Other parameters, typically defined in OpenID Connect.
:return: The authorization url as a string.
"""
""" # TBD: this would only be meaningful in a new acquire_token_interactive()
Expand Down Expand Up @@ -276,6 +277,7 @@ def get_authorization_request_url(
redirect_uri=redirect_uri, state=state, login_hint=login_hint,
prompt=prompt,
scope=decorate_scope(scopes, self.client_id),
**kwargs
)

def acquire_token_by_authorization_code(
Expand Down