Compartilhar via


ChannelValidation.AuthenticateChannelToken Método

Definição

Sobrecargas

AuthenticateChannelToken(String, ICredentialProvider, HttpClient, String)

Valide o cabeçalho de autenticação de entrada como um token enviado do Serviço do Bot Framework.

AuthenticateChannelToken(String, ICredentialProvider, HttpClient, String, AuthenticationConfiguration)

Valide o cabeçalho de autenticação de entrada como um token enviado do Serviço do Bot Framework.

AuthenticateChannelToken(String, ICredentialProvider, String, HttpClient, String)

Valide o cabeçalho de autenticação de entrada como um token enviado do Serviço do Bot Framework.

AuthenticateChannelToken(String, ICredentialProvider, String, HttpClient, String, AuthenticationConfiguration)

Valide o cabeçalho de autenticação de entrada como um token enviado do Serviço do Bot Framework.

AuthenticateChannelToken(String, ICredentialProvider, HttpClient, String)

Valide o cabeçalho de autenticação de entrada como um token enviado do Serviço do Bot Framework.

public static System.Threading.Tasks.Task<System.Security.Claims.ClaimsIdentity> AuthenticateChannelToken (string authHeader, Microsoft.Bot.Connector.Authentication.ICredentialProvider credentials, System.Net.Http.HttpClient httpClient, string channelId);
static member AuthenticateChannelToken : string * Microsoft.Bot.Connector.Authentication.ICredentialProvider * System.Net.Http.HttpClient * string -> System.Threading.Tasks.Task<System.Security.Claims.ClaimsIdentity>
Public Shared Function AuthenticateChannelToken (authHeader As String, credentials As ICredentialProvider, httpClient As HttpClient, channelId As String) As Task(Of ClaimsIdentity)

Parâmetros

authHeader
String

O cabeçalho HTTP bruto no formato: "Portador [longString]".

credentials
ICredentialProvider

O conjunto definido pelo usuário de credenciais válidas, como a AppId.

httpClient
HttpClient

A autenticação de tokens requer chamar para validar endossos e documentos relacionados. O HttpClient é usado para fazer essas chamadas. Essas chamadas geralmente exigem conexões TLS, que são caras para configurar e desabilitar, portanto, um HttpClient compartilhado é recomendado.

channelId
String

A ID do canal a ser validado.

Retornos

Uma ClaimsIdentity válida.

Comentários

Um token emitido pelo emulador do Bot Framework falhará nessa verificação.

Aplica-se a

AuthenticateChannelToken(String, ICredentialProvider, HttpClient, String, AuthenticationConfiguration)

Valide o cabeçalho de autenticação de entrada como um token enviado do Serviço do Bot Framework.

public static System.Threading.Tasks.Task<System.Security.Claims.ClaimsIdentity> AuthenticateChannelToken (string authHeader, Microsoft.Bot.Connector.Authentication.ICredentialProvider credentials, System.Net.Http.HttpClient httpClient, string channelId, Microsoft.Bot.Connector.Authentication.AuthenticationConfiguration authConfig);
static member AuthenticateChannelToken : string * Microsoft.Bot.Connector.Authentication.ICredentialProvider * System.Net.Http.HttpClient * string * Microsoft.Bot.Connector.Authentication.AuthenticationConfiguration -> System.Threading.Tasks.Task<System.Security.Claims.ClaimsIdentity>
Public Shared Function AuthenticateChannelToken (authHeader As String, credentials As ICredentialProvider, httpClient As HttpClient, channelId As String, authConfig As AuthenticationConfiguration) As Task(Of ClaimsIdentity)

Parâmetros

authHeader
String

O cabeçalho HTTP bruto no formato: "Portador [longString]".

credentials
ICredentialProvider

O conjunto definido pelo usuário de credenciais válidas, como a AppId.

httpClient
HttpClient

A autenticação de tokens requer chamar para validar endossos e documentos relacionados. O HttpClient é usado para fazer essas chamadas. Essas chamadas geralmente exigem conexões TLS, que são caras para configurar e desabilitar, portanto, um HttpClient compartilhado é recomendado.

channelId
String

A ID do canal a ser validado.

authConfig
AuthenticationConfiguration

A configuração de autenticação.

Retornos

Uma ClaimsIdentity válida.

Comentários

Um token emitido pelo emulador do Bot Framework falhará nessa verificação.

Aplica-se a

AuthenticateChannelToken(String, ICredentialProvider, String, HttpClient, String)

Valide o cabeçalho de autenticação de entrada como um token enviado do Serviço do Bot Framework.

public static System.Threading.Tasks.Task<System.Security.Claims.ClaimsIdentity> AuthenticateChannelToken (string authHeader, Microsoft.Bot.Connector.Authentication.ICredentialProvider credentials, string serviceUrl, System.Net.Http.HttpClient httpClient, string channelId);
static member AuthenticateChannelToken : string * Microsoft.Bot.Connector.Authentication.ICredentialProvider * string * System.Net.Http.HttpClient * string -> System.Threading.Tasks.Task<System.Security.Claims.ClaimsIdentity>
Public Shared Function AuthenticateChannelToken (authHeader As String, credentials As ICredentialProvider, serviceUrl As String, httpClient As HttpClient, channelId As String) As Task(Of ClaimsIdentity)

Parâmetros

authHeader
String

O cabeçalho HTTP bruto no formato: "Portador [longString]".

credentials
ICredentialProvider

O conjunto definido pelo usuário de credenciais válidas, como a AppId.

serviceUrl
String

URL do serviço.

httpClient
HttpClient

A autenticação de tokens requer chamar para validar endossos e documentos relacionados. O HttpClient é usado para fazer essas chamadas. Essas chamadas geralmente exigem conexões TLS, que são caras para configurar e desabilitar, portanto, um HttpClient compartilhado é recomendado.

channelId
String

A ID do canal a ser validado.

Retornos

Claimsidentity.

Aplica-se a

AuthenticateChannelToken(String, ICredentialProvider, String, HttpClient, String, AuthenticationConfiguration)

Valide o cabeçalho de autenticação de entrada como um token enviado do Serviço do Bot Framework.

public static System.Threading.Tasks.Task<System.Security.Claims.ClaimsIdentity> AuthenticateChannelToken (string authHeader, Microsoft.Bot.Connector.Authentication.ICredentialProvider credentials, string serviceUrl, System.Net.Http.HttpClient httpClient, string channelId, Microsoft.Bot.Connector.Authentication.AuthenticationConfiguration authConfig);
static member AuthenticateChannelToken : string * Microsoft.Bot.Connector.Authentication.ICredentialProvider * string * System.Net.Http.HttpClient * string * Microsoft.Bot.Connector.Authentication.AuthenticationConfiguration -> System.Threading.Tasks.Task<System.Security.Claims.ClaimsIdentity>
Public Shared Function AuthenticateChannelToken (authHeader As String, credentials As ICredentialProvider, serviceUrl As String, httpClient As HttpClient, channelId As String, authConfig As AuthenticationConfiguration) As Task(Of ClaimsIdentity)

Parâmetros

authHeader
String

O cabeçalho HTTP bruto no formato: "Portador [longString]".

credentials
ICredentialProvider

O conjunto definido pelo usuário de credenciais válidas, como a AppId.

serviceUrl
String

URL do serviço.

httpClient
HttpClient

A autenticação de tokens requer chamar para validar endossos e documentos relacionados. O HttpClient é usado para fazer essas chamadas. Essas chamadas geralmente exigem conexões TLS, que são caras para configurar e desabilitar, portanto, um HttpClient compartilhado é recomendado.

channelId
String

A ID do canal a ser validado.

authConfig
AuthenticationConfiguration

A configuração de autenticação.

Retornos

Claimsidentity.

Aplica-se a