通过 FB 的 js sdk 触发“喜欢”动作的正确语法是什么?自定义操作如下所示:
FB.api('/me/recipebox:cook', 'post',
{ recipe : 'http://www.example.com/pumpkinpie.html' });
根据:https ://developers.facebook.com/docs/opengraph/actions/#create
编辑 - 这是我最终使用的:
$("#testLink").click(function(){
$.post("https://graph.facebook.com/<?php echo $user_profile[id]; ?>/og.likes",
{
access_token: FB.getAuthResponse()['accessToken'],
object: "http://www.matrym.com/fb/temp.php"
},
function(data) {
alert("Data Loaded: " + data);
}
);
});