5

このエラーが発生するのはたまにしかありません。たまにしか発生しないようです。ページを更新すると、修正されたようです。何か案は?

The request was aborted: Could not create SSL/TLS secure channel. 
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.

このコードから:

    string ThirdURL = "https://api.facebook.com/method/users.getInfo?uids=" + FacebookUserID + "&client_id=" + AppCode.Facebook.APPLICATION_ID + "&access_token=" + AccessToken + "&fields=first_name,last_name,current_location,email,birthday,sex,pic_square,locale&format=json";
    HttpWebRequest APIThirdRequest = (HttpWebRequest)WebRequest.Create(ThirdURL);
    StreamReader APIThirdResponse = new StreamReader(APIThirdRequest.GetResponse().GetResponseStream());

//error on line below -->
        string MoreAPIData = APIThirdResponse.ReadToEnd();
4

1 に答える 1

1

これはFacebook側からの一時的な問題でした。それが続く間、解決策は、たとえそれが悪い習慣と考えられるかもしれないとしても、リクエストの最大再試行のx回で「try-catchループ」を実行することでした。

この問題自体は2012年7月17日から解決されています。

この問題に関するFacebook開発者のチケット:

于 2012-07-22T08:08:37.003 に答える