コード例 #1
0
        internal static async Task <TokenResponse> GetAccessToken(CredentialInfo credentialInfo)
        {
            try
            {
                var discoveryClient = new DiscoveryClient(credentialInfo.identityServerURL);
                discoveryClient.Policy.RequireHttps = false;
                TokenClient tokenClient = new TokenClient(discoveryClient.GetAsync().Result.TokenEndpoint,
                                                          credentialInfo.identityServerClientID, credentialInfo.identityServerClientSecrets);
                TokenResponse tokenResponse = await tokenClient.RequestResourceOwnerPasswordAsync(
                    credentialInfo.identityServerUsername, credentialInfo.identityServerPassword,
                    credentialInfo.identityServerScopes);

                return(tokenResponse);
            }
            catch (Exception ex) {
                Console.WriteLine(ex.Message.ToString());
                return(null);
            }
        }
コード例 #2
0
 public ManageRequest(CredentialInfo credentialInfoNew, string apiBaseURLNew)
 {
     credentialInfo = credentialInfoNew;
     apiBaseURL     = apiBaseURLNew;
 }