From d2ef99d1175834b709b384c42869cf60697d91ba Mon Sep 17 00:00:00 2001 From: Scott Addie <10702007+scottaddie@users.noreply.github.com> Date: Tue, 19 May 2020 13:38:50 -0500 Subject: [PATCH] Replace invalid Azure CLI devlang in HTTP REPL doc (#18383) --- aspnetcore/web-api/http-repl.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/aspnetcore/web-api/http-repl.md b/aspnetcore/web-api/http-repl.md index ee503f0960..37e1d5acd2 100644 --- a/aspnetcore/web-api/http-repl.md +++ b/aspnetcore/web-api/http-repl.md @@ -819,25 +819,25 @@ To access an Azure-hosted endpoint or to use the [Azure REST API](/rest/api/azur 1. Log in to Azure: - ```azcli + ```azurecli az login ``` 1. Get your subscription ID with the following command: - ```azcli + ```azurecli az account show --query id ``` 1. Copy your subscription ID and run the following command: - ```azcli + ```azurecli az account set --subscription "" ``` 1. Get your bearer token with the following command: - ```azcli + ```azurecli az account get-access-token --query accessToken ```