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 am using facebook api 3.00 (the one from github). When I click on the login link I am redirected to the authentication page of facebook.

When it comes back it's showing the $user as null, but this is working properly:

print $facebook->getAccessToken()
share|improve this question
Could someone please help – knightrider Jun 15 '12 at 13:41

1 Answer

up vote 0 down vote accepted

Finally I was able to solve it. If the $user is null then try accessing facebook with out login. Probably that will not work (Atleast in case this was the problem). Only now it will show that there is some problem with the certificate. Facebook::$CURL_OPTS[CURLOPT_SSL_VERIFYPEER] = false; Facebook::$CURL_OPTS[CURLOPT_SSL_VERIFYHOST] = 2;

And the certificate issue was resolved. After which the user authentication also worked.

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.