SpeechConfig.FromAuthorizationToken(String, String) Method

Definition

Creates an instance of the speech config with specified authorization token and region.

public static Microsoft.CognitiveServices.Speech.SpeechConfig FromAuthorizationToken (string authorizationToken, string region);
static member FromAuthorizationToken : string * string -> Microsoft.CognitiveServices.Speech.SpeechConfig
Public Shared Function FromAuthorizationToken (authorizationToken As String, region As String) As SpeechConfig

Parameters

authorizationToken
String

The authorization token.

region
String

Region identifier for the authorization token.

Returns

A speech config instance.

Remarks

The caller needs to ensure that the authorization token is valid. Before the authorization token expires, the caller needs to refresh it by calling this setter with a new valid token. As configuration values are copied when creating a new recognizer, the new token value will not apply to recognizers that have already been created. For recognizers that have been created before, you need to set authorization token of the corresponding recognizer to refresh the token. Otherwise, the recognizers will encounter errors during recognition.

Applies to