渡す方法はありますか: og:url, og:title, og:image, og:description を html ページのメタタグで宣言せずに残りますか?
FB.api('/me/recipebox:cook', 'post',
{ recipe : 'http://www.example.com/pumpkinpie.html' });
https://developers.facebook.com/docs/opengraph/actions/
プッシュ状態/シングルページ アプリケーションを使用していますが、内部パラメーターを使用するとより簡単になります。
何かのようなもの:
FB.api('/me/recipebox:cook', 'post',
{ recipe : my_json });
ありがとう