某人如何在C#控制台应用程序中实现az login
(Azure CLI)体验?
在这种情况下,将打开浏览器窗口,用户进行身份验证,然后他可以访问私有资源。 我的猜测是身份验证令牌存储在某个地方,但是在哪里?会话变量,文件..?
更新
我发现有一个文件夹~/.azure
存储相关信息。因此,问题主要在第一部分(启动浏览器并获取生成的令牌)。
答案 0 :(得分:0)
某人如何在C#控制台应用程序中实现az登录(Azure CLI)体验?
1。使用Process.Start(@"http://url");
启动浏览器。用户输入凭据后,您将获得授权码。复制它。
2。获取授权码。
3。使用以下代码获取访问令牌:
using (var client = new HttpClient())
{
client.DefaultRequestHeaders.Add("ContentType", "application/json");
var requestURl = new Uri($"https://login.microsoftonline.com/xxxxxxxxxxxxxxxxxxxx/oauth2/v2.0/token");
string body = "{\"client_id\": \"3c35ed0b-a441-4c57-9d1c-3a3b0392d9c3\",\"code\":\"the_code_you_copy_in_the_second_step\",\"redirect_uri\": \"https://localhost\",\"grant_type\": \"authorization_code\",\"client_secret\": \"xxxxxxxxxxxxxx\",\"scope\": \"user.read\"}";
var stringContent = new StringContent(body, Encoding.UTF8, "application/json");
var response = client.PostAsync(requestURl, stringContent).Result;
}
有关如何获取authorization code
和access token
的详细信息,请参考此article。