如何使用连接令牌连接到Azure订阅? [英] How to connect to an azure subscription using a connection token?

查看:95
本文介绍了如何使用连接令牌连接到Azure订阅?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试连接到我的azure订阅,我有一个允许我获取令牌的代码

I am trying to connect to my azure subscription , I have a code which allow me to get the Token

            var authContext = new AuthenticationContext(string.Format
             ("https://login.windows.net/{0}", tenantId));
            var credential = new ClientCredential(applicationId, password);
            AuthenticationResult token = authContext.AcquireTokenAsync
              ("https://management.core.windows.net/", credential).Result;

            if (token == null)
            {
                Console.WriteLine("Failed to obtain the token");
                return;
            }

从这一步开始,我不知道如何使用ResourceManagementClient类来建立连接...

from this step i don't know how to use ResourceManagementClient Class to get connected ...

推荐答案

获得令牌后,可以将其与"ResourceManagementClient"一起使用:

Once you got the token, you can use it like this with a "ResourceManagementClient":

    string token = authenticationResult.CreateAuthorizationHeader().Substring("Bearer ".Length);

    Microsoft.Rest.ServiceClientCredentials credentials = new TokenCredentials(token);

    using (var rgClient = new ResourceManagementClient(credentials))
    {
        rgClient.SubscriptionId = "xxxxxxx-xxxxx-xxxxxxxx-xxxxxxx";
        var rgs = rgClient.ResourceGroups.List();
    };

您可以创建自己的"TokenCredentials"类,该类继承自"ServiceClientCredentials",如下所示:

You can create your own "TokenCredentials" class which inherit From "ServiceClientCredentials" like this :

public class TokenCredentials : ServiceClientCredentials
{

    /// <summary>
    /// The bearer token type, as serialized in an http Authentication header.
    /// </summary>
    private const string BearerTokenType = "Bearer";

    /// <summary>
    /// Gets or sets secure token used to authenticate against Microsoft Azure API. 
    /// No anonymous requests are allowed.
    /// </summary>
    protected ITokenProvider TokenProvider { get; private set; }

    /// <summary>
    /// Initializes a new instance of the <see cref="TokenCredentials"/>
    /// class with the given 'Bearer' token.
    /// </summary>
    /// <param name="token">Valid JSON Web Token (JWT).</param>
    public TokenCredentials(string token)
        : this(token, BearerTokenType)
    {
    }

    /// <summary>
    /// Initializes a new instance of the <see cref="TokenCredentials"/>
    /// class with the given token and token type.
    /// </summary>
    /// <param name="token">Valid JSON Web Token (JWT).</param>
    /// <param name="tokenType">The token type of the given token.</param>
    public TokenCredentials(string token, string tokenType)
        : this(new StringTokenProvider(token, tokenType))
    {
        if (string.IsNullOrEmpty(token))
        {
            throw new ArgumentNullException("token");
        }
        if (string.IsNullOrEmpty(tokenType))
        {
            throw new ArgumentNullException("tokenType");
        }
    }

    /// <summary>
    /// Create an access token credentials object, given an interface to a token source.
    /// </summary>
    /// <param name="tokenProvider">The source of tokens for these credentials.</param>
    public TokenCredentials(ITokenProvider tokenProvider)
    {
        if (tokenProvider == null)
        {
            throw new ArgumentNullException("tokenProvider");
        }

        this.TokenProvider = tokenProvider;
    }

    /// <summary>
    /// Apply the credentials to the HTTP request.
    /// </summary>
    /// <param name="request">The HTTP request.</param>
    /// <param name="cancellationToken">Cancellation token.</param>
    /// <returns>
    /// Task that will complete when processing has completed.
    /// </returns>
    public async override Task ProcessHttpRequestAsync(HttpRequestMessage request,
        CancellationToken cancellationToken)
    {
        if (request == null)
        {
            throw new ArgumentNullException("request");
        }

        if (TokenProvider == null)
        {
            throw new ArgumentNullException("Token provider");
        }

        request.Headers.Authorization = await TokenProvider.GetAuthenticationHeaderAsync(cancellationToken);
        await base.ProcessHttpRequestAsync(request, cancellationToken);
    }
}

这篇关于如何使用连接令牌连接到Azure订阅?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆