Skip to content

Commit ba797e7

Browse files
authored
Use case-sensitive scope in README
1 parent 5a22736 commit ba797e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Acquiring tokens with MSAL Python need to follow this 3-step pattern.
7777
```python
7878
if not result:
7979
# 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"])
80+
result = app.acquire_token_by_one_of_the_actual_method(..., scopes=["User.Read"])
8181
if "access_token" in result:
8282
print(result["access_token"]) # Yay!
8383
else:

0 commit comments

Comments
 (0)