IBM WATSON TEXT TO SPEECH ERROR : : The request was aborted: Could not create SSL/TLS secure channel
IBM WATSON TEXT TO SPEECH ERROR : : The request was aborted: Could not create SSL/TLS secure channel
今天我在我的 C# WPF 应用程序中使用了 ibm 云服务,即 ibm watson 文本到语音,但是当我执行我的方法时,它显示了一个异常,即 请求被中止:无法创建 SSL/TLS 安全通道。
我的方法是
void Example()
{
IamAuthenticator authenticator = new IamAuthenticator(apikey: "{APIKEY}");
TextToSpeechService textToSpeech = new TextToSpeechService(authenticator);
textToSpeech.SetServiceUrl("URL");
var result = textToSpeech.ListVoices();
MessageBox.Show(result.Result.ToString());
}
我不知道下一步该怎么做..因为我陷入了这个异常
System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
在构造函数和静态块中使用这行代码
static System.Net.SecurityProtocolType SecurityProtocol
{
get;
set;
}
使用这个静态方法。
今天我在我的 C# WPF 应用程序中使用了 ibm 云服务,即 ibm watson 文本到语音,但是当我执行我的方法时,它显示了一个异常,即 请求被中止:无法创建 SSL/TLS 安全通道。
我的方法是
void Example()
{
IamAuthenticator authenticator = new IamAuthenticator(apikey: "{APIKEY}");
TextToSpeechService textToSpeech = new TextToSpeechService(authenticator);
textToSpeech.SetServiceUrl("URL");
var result = textToSpeech.ListVoices();
MessageBox.Show(result.Result.ToString());
}
我不知道下一步该怎么做..因为我陷入了这个异常
System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
在构造函数和静态块中使用这行代码
static System.Net.SecurityProtocolType SecurityProtocol
{
get;
set;
}
使用这个静态方法。