私はこのコードサンプルを使用します:https://github.com/Azure-Samples/active-directory-dotnet-graphapi-web、私はこのコードサンプルがクライアントライブラリを使用していることを知っていますが、私はperfmonクエリを使用する(httpclientを使用してください)キャッシュ:キャッシュにトークンが見つからないため、トークンをサイレントに取得できませんでした。呼び出しメソッドAcquireToken
string userObjectID = ClaimsPrincipal.Current.FindFirst("http://schemas.microsoft.com/identity/claims/objectidentifier").Value;
AuthenticationContext authContext = new AuthenticationContext(Startup.Authority, new NaiveSessionCache(userObjectID));
ClientCredential credential = new ClientCredential(clientId, appKey);
var result = await authContext.AcquireTokenSilentAsync(resource, credential, new UserIdentifier(userObjectID, UserIdentifierType.UniqueId));
しかし、私が見つけ、常にエラーを投げた:何のトークンがキャッシュ内に見つからなかったとしてトークン黙っ取得に失敗しました。呼び出し方法AcquireToken
このシナリオをテストするには、もう一度ログアウトしてログインしようとしましたか? –