我在 Open Graph App 面板中创建了创建操作。我也有查看操作并附加此操作工作正常,现在 Facebook 拒绝了查看操作并告诉我使用我现在正在使用的 Watch 但相同的代码,并且操作未附加到显式共享一切顺利,我得到返回的对象 FB . 回调。_gcb31({"id":"10151457457579569"});
代码很简单,我是否使用了正确的操作...我也尝试过 video.watches 和 watch
FB.api(
'/me/friso-journey-cam:create',
'post',
{ other: 'http://getcu3er.com/projects/friso/action.php?id='+slideshow_id+"&sec_key="+slideshow_seckey, "message":message_to_send, "fb:explicitly_shared":true,actions:'video.watches', access_token:access_token, },
function(response) {
if (!response || response.error) {
alert("There was an error in saving the slideshow! ");
closePopup();
} else {
slideshow.object_id = response.id;
////console.log("object created :"+slideshow.object_id)
// onSlideshowFinish();
}
}
);