I have watched this seems a fb official open graph tutorial video. which is almost just a video version of official tutorial:
http://developers.facebook.com/docs/beta/opengraph/tutorial/
http://vimeo.com/29464909
I followed everything they do on the code(of course using my own app's id and namespace etc.) and the only different is I use dreamweaver and upload to my ftp
finally: when they click "cook" button, it comes out success when I click "cook" button, it comes out error. so I edited the js response part with the following to see the error detail:
if (!response || response.error) {
if (response.error) {
msg += "\n\nType: "+response.error.type+"\n\nMessage: "+response.error.message;
}
alert(msg);
}
else {
alert('Post was successful! Action ID: ' + response.id);
}
});
}
when click "cook" button it pops up "Error occured Type: OAuthException Message: (#15) This method must be called with an app access_token."
then i go add the access token by follow another post, something like
FB.api('/me/mysite:cook'+
'?recipe=mysite.com/og.html&access_token=blablabla','post',
but the error still the same #15
how to make it publishes action from my site to user's fb?