Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I had a strange bug yesterday that drove me crazy all day and I wanted share the solution with you…

I'm using facebook login API, with PHP SDK, and WampServer5 (1.7) with PHP 5.2.5 .

Until yesterday everything worked fine, but then facebook api stopped working with CURL_IPRESOLVE

problem. Forums said to move to PHP 5.3 but this was available only in version of WampServer2.

I installed the new WampServer2 and allowed CURL, but from that moment Facebook PHP SDK just return

0 all the time on getuser() (facebook JS SDK was working well). It went to the redirection link

(loginurl) but on return just gave 0 all the time.

Nothing seemed to fix this, until I changed base_facebook.php , and added these parameters:

CURLOPT_SSL_VERIFYPEER => false, CURLOPT_SSL_VERIFYHOST => 2,

To the $CURL_OPTS array on line 133.

I don't know why but that seemed to fix this.

Hope this will help someone.

Best,

Sariel.

share|improve this question
Im having the same issue.. everything was working fine a few days ago but now im getting nothing back from $facebook->api('/me') I tried your solution and that's not working too. Any other solutions? – Levikay Dec 1 '12 at 6:52

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.