我一直在玩Azure网站。我正在使用一些谷歌API,但似乎一旦部署在Azure网站上,请求谷歌API时会出现问题:
请求已中止:无法创建 SSL/TLS 安全通道。
我不确定它来自哪里,因为我可以使用HTTPS浏览我的网站,也许它来自IIS ARR插件?
编辑我正在添加一些代码
@mcollier 我正在使用网络客户端进行调用。下载结果时将失败(http get 请求)
try
{
WebClient webClient = new WebClient();
string request = string.Format("https://www.googleapis.com/books/v1/volumes?q=intitle:{0}&fields=items(volumeInfo)&maxResults=1&printType=books&key={1}", infos.Value, ConfigurationHelper.GoogleKey);
content = webClient.DownloadString(request);
}
catch (Exception ex)
{
throw new Exception("content from WebClient : " + content, ex);
// Log.
}
将其
添加到 Global.asax 中的Application_Start中.cs应该可以解决您的问题:
ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3;