BotFrameworkAdapter.GetAadTokensAsync メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
GetAadTokensAsync(ITurnContext, String, String[], String, CancellationToken) |
ボットの AppCredentials を使用して、構成された接続上の特定のリソースの Azure Active Directory トークンを取得します。 |
GetAadTokensAsync(ITurnContext, AppCredentials, String, String[], String, CancellationToken) |
カスタマイズされた AppCredentials を使用して、構成された接続上の特定のリソースの Azure Active Directory トークンを取得します。 |
GetAadTokensAsync(ITurnContext, String, String[], String, CancellationToken)
ボットの AppCredentials を使用して、構成された接続上の特定のリソースの Azure Active Directory トークンを取得します。
public virtual System.Threading.Tasks.Task<System.Collections.Generic.Dictionary<string,Microsoft.Bot.Schema.TokenResponse>> GetAadTokensAsync (Microsoft.Bot.Builder.ITurnContext context, string connectionName, string[] resourceUrls, string userId = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAadTokensAsync : Microsoft.Bot.Builder.ITurnContext * string * string[] * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.Dictionary<string, Microsoft.Bot.Schema.TokenResponse>>
override this.GetAadTokensAsync : Microsoft.Bot.Builder.ITurnContext * string * string[] * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.Dictionary<string, Microsoft.Bot.Schema.TokenResponse>>
Public Overridable Function GetAadTokensAsync (context As ITurnContext, 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
ユーザーとの会話の現在のターンのコンテキスト。
- connectionName
- String
このボットで構成された Azure Active Directory 接続の名前。
- resourceUrls
- String[]
トークンを取得するリソース URL の一覧。
- userId
- String
トークンを取得するユーザー ID。 null を渡す場合、userId は ITurnContext のアクティビティから取得されます。
- cancellationToken
- CancellationToken
非同期操作のキャンセル トークン。
戻り値
対応する TokenResponse への resourceUrl の Dictionary。
実装
適用対象
GetAadTokensAsync(ITurnContext, AppCredentials, String, String[], String, CancellationToken)
カスタマイズされた AppCredentials を使用して、構成された接続上の特定のリソースの Azure Active Directory トークンを取得します。
public virtual 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>>
override this.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 Overridable 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
このボットで構成された Azure Active Directory 接続の名前。
- resourceUrls
- String[]
トークンを取得するリソース URL の一覧。
- userId
- String
トークンを取得するユーザー ID。 null を渡す場合、userId は ITurnContext のアクティビティから取得されます。
- cancellationToken
- CancellationToken
非同期操作のキャンセル トークン。
戻り値
対応する TokenResponse への resourceUrl の Dictionary。