This is the simplest application that can be made:
<?php
include_once "inc/fb/facebook.php";
$facebook = new Facebook(array(
'appId' => 'xxx',
'secret' => 'yyy'
));
$user = $facebook->getUser();
var_dump( $facebook->api("/me/likes/") );
?>`
In return I should get an array of pages, that user have already liked. The problem is, that it doesnt work for some users. Somehow in a process, I have found that error:
Fatal error: Uncaught OAuthException: An active access token must be used to query information about the current user. thrown in (...)/fb/base_facebook.php on line 1039
I have tryed to force the get token with:
$access_token = $facebook->getAccessToken();
and it gests the token for every user, but still no table about what user likes.
Any help would be appreciated.