5

私は時々時々ありました。ページを更新すると、それ自体が修正されているようです。何か案は?このコードからSSL/TLSセキュアチャネルを作成できませんでした

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(); 
+3

我々は、過去数週間のために時折同じエラーを見ています。最近、fbバグのチケットがありました。 http://developers.facebook.com/bugs/367369176650486 – mellodev

+0

このエラーは、過去数日間にますます増えています。誰もが問題の解決策を持っていますか? – kape123

+1

私たちのウェブホストであることがわかりました。私たちのアカウントには、graph.facebook.comのIPアドレスがホストファイルに含まれていました。 はipv6の問題であることが判明しました。 –

答えて

1

これはFacebookの側からの一時的な問題でした。たとえそれが悪い習慣と見なされても、解決のために続けられたが、x回の要求の最大再試行で「試行錯誤ループ」を実行することでした。

問題自体は2012-07-17以降解決されています。問題についてFacebook開発に

チケット:

関連する問題