我正在使用Google RESTApis管理Google日历
一个用于检查当前“访问令牌是否有效”的特定api调用仅在天蓝色的环境中花费了额外的时间(2分钟),而在本地主机和其他非天蓝色的环境中,相同的调用仅花费了几秒钟。
string url = "https://www.googleapis.com/oauth2/v2/tokeninfo?access_token=" + AccessToken;
var request = (HttpWebRequest)WebRequest.Create(url);
request.ContentType = "application/x-www-form-urlencoded";
request.Method = "POST";
byte[] bytes = Encoding.UTF8.GetBytes(string.Empty);
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls11;
using (var stream = request.GetRequestStream())
{
stream.Write(bytes, 0, bytes.Length); //Push it out there
}
var resp = request.GetResponse();
任何帮助将不胜感激。预先感谢。