I downloaded the PHP SDK from Github (https://github.com/facebook/facebook-php-sdk) on my server, but cannot get example.php to work:
- When I open example.php in Safari I get - you are not connected
- I click the login link
- I enter user and pass to Facebook
- The browser redirects back to my example.php - there's "state" and "code" params in the URL
- example.php still shows "you are not connected" (which is the essence of my problem)
- If I add:
print $facebook->getAccessToken();- it prints an Access Token (!!!)
So my question is - what's example.php's problem?
If I have an access token from Facebook, why $facebook->getUser() returns nothing?
How to the get example.php working, so I can continue developing my own logic onwards?
PS: at the same time the PHP code example here: https://developers.facebook.com/docs/authentication/ works just fine, so it looks I have a problem with php-sdk from Github ... is the Github library stable or rather work in progress, which cannot be used for production?