Skip to content

Commit 718bfe7

Browse files
(AzureCXP) fixes MicrosoftDocs/azure-docs#114363
(AzureCXP) fixes MicrosoftDocs/azure-docs#114363 Updated line no.99 Typo correction From "HttpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", authResult.AccessToken);" To "httpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", authResult.AccessToken);"
1 parent fb4062c commit 718bfe7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/active-directory/app-proxy/application-proxy-configure-native-client-application.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ if (authResult != null)
9696
//Use the Access Token to access the Proxy Application
9797
9898
HttpClient httpClient = new HttpClient();
99-
HttpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", authResult.AccessToken);
99+
httpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", authResult.AccessToken);
100100
HttpResponseMessage response = await httpClient.GetAsync("<Proxy App Url>");
101101
}
102102
```

0 commit comments

Comments
 (0)