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 faecbook's PHP SDK and the get_loggedin_user() api worked good in past several weeks, but just about 10 minutes ago - it consistently returns null - does anybody know whether facebook is experience an outage or there is any change with this API?

My site is heavily rely on the facebook API - so any hints is highly appreciate!

share|improve this question

1 Answer

It means that user is logged out. You're using outdated version of PHP SDK, use new one instead

https://github.com/facebook/php-sdk/

you can use

$user = $facebook->getUser();

there

share|improve this answer
Genesis - thank you for your response. I'll take a look and update to the latest SDK. – Isaac Liu Sep 5 '11 at 8:31

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.