Skip to content

Commit 22d1f97

Browse files
committed
JSON tags
1 parent e173775 commit 22d1f97

5 files changed

+6
-6
lines changed

articles/active-directory/develop/scenario-daemon-acquire-token.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ If you get an error message telling you that you used an invalid scope, you prob
215215
If you get an **Insufficient privileges to complete the operation** error when you call the API, the tenant administrator needs to grant permissions to the application. See step 6 of Register the client app above.
216216
You'll typically see an error that looks like this error:
217217

218-
```JSon
218+
```json
219219
Failed to call the web API: Forbidden
220220
Content: {
221221
"error": {

articles/active-directory/develop/scenario-daemon-app-configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ The configuration file defines:
5858

5959
[appsettings.json](https://github.com/Azure-Samples/active-directory-dotnetcore-daemon-v2/blob/master/1-Call-MSGraph/daemon-console/appsettings.json) from the [.NET Core console daemon](https://github.com/Azure-Samples/active-directory-dotnetcore-daemon-v2) sample.
6060

61-
```JSon
61+
```json
6262
{
6363
"Instance": "https://login.microsoftonline.com/{0}",
6464
"Tenant": "[Enter here the tenantID or domain name for your Azure AD tenant]",

articles/active-directory/develop/scenario-desktop-app-configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ To learn more about how to configure an MSAL.NET desktop application:
111111

112112
Imagine a .NET Core console application that has the following `appsettings.json` configuration file:
113113

114-
```JSon
114+
```json
115115
{
116116
"Authentication": {
117117
"AzureCloudInstance": "AzurePublic",
@@ -213,7 +213,7 @@ Objective-C:
213213
```objc
214214
NSError *msalError = nil;
215215

216-
MSALPublicClientApplicationConfig *config = [[MSALPublicClientApplicationConfig alloc] initWithClientId:@"<your-client-id-here>"];
216+
MSALPublicClientApplicationConfig *config = [[MSALPublicClientApplicationConfig alloc] initWithClientId:@"<your-client-id-here>"];
217217
MSALPublicClientApplication *application = [[MSALPublicClientApplication alloc] initWithConfiguration:config error:&msalError];
218218
```
219219

articles/active-directory/develop/scenario-protected-web-api-app-registration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ To expose application permissions, you need to edit the manifest.
105105

106106
The following sample shows the contents of `appRoles`, where the value of `id` can be any unique GUID.
107107

108-
```JSon
108+
```json
109109
"appRoles": [
110110
{
111111
"allowedMemberTypes": [ "Application" ],

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Now that you have a token, you can call a protected web API.
2323

2424
Here's simplified code for the action of the `HomeController`. This code gets a token to call Microsoft Graph. Code has been added to show how to call Microsoft Graph as a REST API. The URL for the Microsoft Graph API is provided in the appsettings.json file and is read in a variable named `webOptions`:
2525

26-
```JSon
26+
```json
2727
{
2828
"AzureAd": {
2929
"Instance": "https://login.microsoftonline.com/",

0 commit comments

Comments
 (0)