Skip to content

Commit 7d2b7a4

Browse files
Merge pull request #252404 from cilwerner/patch-20
Azure CXP review fix
2 parents c5c647f + 0f683cc commit 7d2b7a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/active-directory/develop/scenario-web-app-call-api-acquire-token.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public async Task<IActionResult> Profile()
6161

6262
// Use the access token to call a protected web API.
6363
HttpClient client = new HttpClient();
64-
client.DefaultRequestHeaders.Add("Authorization", authorizationHeader);
64+
client.DefaultRequestHeaders.Add("Authorization", accessToken);
6565
string json = await client.GetStringAsync(url);
6666
}
6767
```

0 commit comments

Comments
 (0)