当我尝试使用 JS 执行操作时FB.api([...]
,我No callback passed to the ApiClient [...]
在哪里可以设置此回调?
问问题
2719 次
1 回答
5
只需在 API 调用中添加一个回调函数:
FB.api(
'/me/[YOUR_APP_NAMESPACE]:[YOUR_ACTION]',
'post',
{ recipe: '[LINK_TO_YOUR_OBJECT]' },
function(response) {
if (!response || response.error) {
alert('Error occured');
}
else {
alert('Action was successful! Action ID: ' + response.id)
}
}
);
于 2012-07-24T21:37:57.020 回答