We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 798aa77 commit 51d7ba1Copy full SHA for 51d7ba1
msal/request.py
@@ -12,7 +12,9 @@ def decorate_scope(
12
# We could make the developer pass these and then if they do they will
13
# come back asking why they don't see refresh token or user information.
14
raise ValueError(
15
- "API does not accept {} value as user-provided scopes".format(
+ "MSAL always sends the scopes {}. They cannot be suppressed "
16
+ "as they are required for the library to function. "
17
+ "Do not include any of these scopes in the scope parameter.".format(
18
reserved_scope))
19
if client_id in scope_set:
20
if len(scope_set) > 1:
0 commit comments