You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/spring-apps/includes/quickstart-deploy-restful-api-app/deploy-restful-api-app-with-enterprise-plan.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -166,7 +166,7 @@ Use the following steps to create a new resource group.
166
166
167
167
### 3.3. Install extension and register namespace
168
168
169
-
Use the following commands to install the Azure Spring Apps extension for the Azure CLI and register the namespace: `Microsoft.SaaS`:
169
+
Use the following commands to install the Azure Spring Apps extension for the Azure CLI and register the `Microsoft.SaaS` namespace:
170
170
171
171
```azurecli
172
172
az extension add --name spring --upgrade
@@ -253,19 +253,19 @@ After the application instance and the PostgreSQL instance are created, the appl
253
253
--identifier-uris ${TODO_APP_URL}
254
254
```
255
255
256
-
1. Use the following command to create service principal for the application:
256
+
1. Use the following command to create a service principal for the application:
257
257
258
258
```azurecli
259
259
az ad sp create --id ${TODO_APP_URL}
260
260
```
261
261
262
-
1. Use the following command to generate permission ids:
262
+
1. Use the following command to generate permission IDs:
@@ -317,7 +317,7 @@ After the application instance and the PostgreSQL instance are created, the appl
317
317
az account show --query "tenantId" --output tsv
318
318
```
319
319
320
-
1. Use the following command to get the application-id to use in the next steps:
320
+
1. Use the following command to get the application ID to use in the next steps:
321
321
322
322
```azurecli
323
323
appid=$(az ad app show --id ${TODO_APP_URL} \
@@ -397,7 +397,7 @@ The RESTful APIs act as a resource server, which is protected by Microsoft Entra
397
397
az ad app permission admin-consent --id ${TODOWEB_APP_URL}
398
398
```
399
399
400
-
1. Use the following command to get the client ID of the `ToDoWeb` app used in 'Obtain the access token' step:
400
+
1. Use the following command to get the client ID of the `ToDoWeb` app used in the [Obtain the access token](#obtain-the-access-token) step:
401
401
402
402
```azurecli
403
403
az ad app show --id ${TODOWEB_APP_URL} \
@@ -417,21 +417,21 @@ The RESTful APIs act as a resource server, which is protected by Microsoft Entra
417
417
418
418
#### Update the OAuth2 configuration for Swagger UI authorization
419
419
420
-
1.use the following command to get the object id of the `ToDoWeb` app:
420
+
1.Use the following command to get the object ID of the `ToDoWeb` app:
421
421
422
422
```azurecli
423
423
az ad app show --id ${TODOWEB_APP_URL} --query id
424
424
```
425
425
426
-
1.use the following command to get the url of your `simple-todo-api` ASA app:
426
+
1.Use the following command to get the url of your `simple-todo-api` app:
427
427
428
428
```azurecli
429
429
az spring app show --name ${APP_NAME} \
430
430
--service ${AZURE_SPRING_APPS_NAME} \
431
431
--query properties.url
432
432
```
433
433
434
-
1. Use the following command to update the OAuth2 configuration for Swagger UI authorization, replace **\<object-id>** and **\<url>** with the parameters you got. Then, you can authorize users to acquire access tokens through the ToDoWeb app.
434
+
1. Use the following command to update the OAuth2 configuration for Swagger UI authorization, replace **\<object-id>** and **\<url>** with the parameters you got. Then, you can authorize users to acquire access tokens through the `ToDoWeb` app.
Copy file name to clipboardExpand all lines: articles/spring-apps/includes/quickstart-deploy-restful-api-app/validate-the-app-portal.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ You can now access the RESTful API to see if it works.
17
17
18
18
### 5.1. Request an access token
19
19
20
-
The RESTful APIs act as a resource server, which is protected by Microsoft Entra ID. Before acquiring an access token, you must register another application in Microsoft Entra ID and grant permissions to the client application, which is named `ToDoWeb`.
20
+
The RESTful APIs act as a resource server, which is protected by Microsoft Entra ID. Before acquiring an access token, you're required to register another application in Microsoft Entra ID and grant permissions to the client application, which is named `ToDoWeb`.
0 commit comments