I'm fairly new to Facebook and I'm trying to display a simple dialog that will write to the wall... But with no luck... :-(
I tried this:
<!DOCTYPE HTML>
<html xmlns:fb="https://www.facebook.com/2008/fbml">
<body>
<script src="http://connect.facebook.net/da_DK/all.js"></script>
<div id="fb-root"></div>
<script>
FB.init({appId: '172225549532081', xfbml: true, cookie: true});
FB.getLoginStatus(function(response) {
if (response.authResponse && response.status=="connected") {
console.log("loged in");
} else {
console.log("not logged in");
}
});
FB.ui({
display: 'iframe',
method: 'feed',
name: 'Facebook Dialogs',
link: 'http://developers.facebook.com/docs/reference/dialogs/',
picture: 'http://fbrell.com/f8.jpg',
caption: 'Reference Documentation',
description: 'Dialogs provide a simple, consistent interface for applications to interface with users.'
});
</script>
</body>
</html>
But it always logs "Not logged in", even if I'm logged into Facebook, and the dialog gives me this error:
API Error Code: 102
API Error Description: Session key invalid or no longer valid
Error Message: Iframe dialogs must be called with a session key
I've searched all over, but I can't see how to get the access token anywhere.
What am I doing wrong?
Thank you in advance...
display: 'iframe'? I guess Facebook dialogs work without the user being connected to your app. – ifaour Oct 20 '11 at 13:08