I have created an app with no special permissions. With this app I query Facebook events to display on my website. That all works fine.
I now wanted to expand the website with displaying Facebook Notes of my Fan Page. When I try to Implement that, I get the error message:
"Requires user session"
On the FQL-Note API reference they say "any valid access_token if it is public note written by a page." I think I have a valid public token.
require '../src/fb-sdk/src/facebook.php';
$facebooknotes = new Facebook(array(
'appId' => 'xxxxxxxxxxxxxxx',
'secret' => 'yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy',
'cookie' => false, // enable optional cookie support
));
$fql_notes = "SELECT uid, note_id, title, content, content_html, created_time, updated_time FROM note WHERE uid = 149018831796518";
$param = array(
'method' => 'fql.query',
'query' => $fql_notes,
'callback' => ''
);
$fql_notesResult = $facebooknotes->api($param);
foreach($fql_notesResult as $keys => $fbnotevalues){ echo "<h2>" . $fbnotevalues['title'] . "</h2>" . $fbnotevalues['content_html']; }
Can someone help?
Regards,
rimshot