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 5a22736 commit ba797e7Copy full SHA for ba797e7
README.md
@@ -77,7 +77,7 @@ Acquiring tokens with MSAL Python need to follow this 3-step pattern.
77
```python
78
if not result:
79
# So no suitable token exists in cache. Let's get a new one from AAD.
80
- result = app.acquire_token_by_one_of_the_actual_method(..., scopes=["user.read"])
+ result = app.acquire_token_by_one_of_the_actual_method(..., scopes=["User.Read"])
81
if "access_token" in result:
82
print(result["access_token"]) # Yay!
83
else:
0 commit comments