gpt4 book ai didi

javascript - 没有回调传递给 ApiClient

转载 作者:行者123 更新时间:2023-11-29 17:22:42 25 4
gpt4 key购买 nike

当我尝试使用 JS FB.api([...] 执行操作时,我得到 No callback passed to the ApiClient [...]我在哪里可以设置这个回调?

最佳答案

只需在 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)
}
}
);

关于javascript - 没有回调传递给 ApiClient,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11632280/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com