Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm only sometimes getting this error - it seems like it only happens sometimes. If I refresh the page, it seems to fix itself. Any ideas?

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.

From this code:

    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();
share|improve this question
3  
We're seeing the same error occasionally for the past few weeks. There was a fb bug ticket about it recently. developers.facebook.com/bugs/367369176650486 – mellodev Jun 30 '12 at 2:29
We are seeing this error increasingly during past few days. Anyone has the solution for the problem? – kape123 Jun 30 '12 at 6:41
1  
we found our issue to be our webhost, they included the ip address of graph.facebook.com to the host file in our accounts and all was well. resolved to be an ipv6 issue. – Shawn E Carter Jun 30 '12 at 19:39
This is not webhost issue, this is issue with Facebook API - developers.facebook.com/bugs/318333734927578 – kape123 Jul 2 '12 at 21:18
Currently-open bug report in developers.facebook.com/bugs/335732253172491 – Igy Jul 4 '12 at 13:43
show 1 more comment

1 Answer

This was a temporary issue from Facebook's side. While it lasted an solution was to do a "try-catch loop" with x amount of max retries of the request, even if it might be considered bad practice.

The issue itself is resolved since 2012-07-17.

Tickets on Facebook Developers about the issue:

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.