IExtendedUserTokenProvider.GetAadTokensAsync 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
使用自訂的 AppCredentials,擷取已設定連線上特定資源的 Azure Active Directory 權杖。
public System.Threading.Tasks.Task<System.Collections.Generic.Dictionary<string,Microsoft.Bot.Schema.TokenResponse>> GetAadTokensAsync (Microsoft.Bot.Builder.ITurnContext context, Microsoft.Bot.Connector.Authentication.AppCredentials oAuthAppCredentials, string connectionName, string[] resourceUrls, string userId = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAadTokensAsync : Microsoft.Bot.Builder.ITurnContext * Microsoft.Bot.Connector.Authentication.AppCredentials * string * string[] * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.Dictionary<string, Microsoft.Bot.Schema.TokenResponse>>
Public Function GetAadTokensAsync (context As ITurnContext, oAuthAppCredentials As AppCredentials, connectionName As String, resourceUrls As String(), Optional userId As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Dictionary(Of String, TokenResponse))
參數
- context
- ITurnContext
與使用者交談目前回合的內容。
- oAuthAppCredentials
- AppCredentials
適用于 OAuth 的 AppCredentials。
- connectionName
- String
使用此 Bot 設定的 Azure Active Directory 連線名稱。
- resourceUrls
- String[]
要擷取權杖的資源 URL 清單。
- userId
- String
擷取權杖的使用者識別碼。 如果傳入 null,則 userId 會取自 ITurnCoNtext 中的 Activity。
- cancellationToken
- CancellationToken
取消語彙基元,可由其他物件或執行緒用來接收取消通知。
傳回
resourceUrl 的字典,指向對應的 TokenResponse。