2016-11-01 8 views
2

私はこのように、C#クライアントにActiveDirectoryClientを取得しようとしています:ができます406エラー

public static async Task<string> AcquireTokenAsyncForUser() 
    { 
     return await GetTokenForUser(); 
    } 


    public static async Task<string> GetTokenForUser() 
    { 
     if (TokenForUser == null) 
     { 

      AuthenticationContext authenticationContext = new AuthenticationContext("https://login.microsoftonline.com/common/v2.0"); 
      UserPasswordCredential userCredential = new UserPasswordCredential("<USERNAME>@outlook.com", <PASSWORD>); 

      AuthenticationResult userAuthnResult = await authenticationContext.AcquireTokenAsync("https://graph.microsoft.com/v1.0/me/messages", 
       <AZURE AD APP CLIENT ID>, userCredential); 

      TokenForUser = userAuthnResult.AccessToken; 
      Console.WriteLine("\n Welcome " + userAuthnResult.UserInfo.GivenName + " " + 
           userAuthnResult.UserInfo.FamilyName); 
     } 
     return TokenForUser; 
    } 

私は続ける:このAcquireTokenAsyncForUser()メソッドで

Uri servicePointUri = new Uri("https://graph.microsoft.com/v1.0/me/messages"); 
Uri serviceRoot = new Uri(servicePointUri, <OUR-AZURE-TENANT-ID>); 
ActiveDirectoryClient activeDirectoryClient = new ActiveDirectoryClient(serviceRoot, 
        async() => await AcquireTokenAsyncForUser()); 

このエラーが発生する:

Error getting signed in user accessing_ws_metadata_exchange_failed: Accessing WS metadata exchange failed-

Response status code does not indicate success: 406 (NotAcceptable).-

正しいか不正な資格情報を使用しても問題はありません。

答えて

2

AADは、MSAアカウントのWS-Trustサインインをサポートしていません。このコードを実行しているデバイスには、ブラウザ/ UIがないときは、あなたの応答のための

AcquireTokenAsync("https://graph.microsoft.com/v1.0/me/messages", 
       <AZURE AD APP CLIENT ID>, new Uri("<your redirect uri>", new PlatformParameters(PromptBehavior.Auto{or whatever you want}, null)); 
+0

感謝を呼び出すことにより、WebViewを介してユーザに署名する必要があり、私は何をしますか? Office365アカウントの使用を検討する必要がありますか? – mpjjonker

+1

デバイスコードフローを実証済みのように使用できます。http://www.cloudidentity.com/blog/2015/12/02/new-adal-3-x-previewdevice-profile-linux-and-os-x-sample/ –

関連する問題