我在Open Graph App面板中创建了Create action。 我也有View动作并且附加此动作工作正常, 现在Facebook拒绝了查看动作,并告诉我使用我正在使用的Watch 但是相同的代码和动作没有附加到显式共享 一切顺利,我得到了返回的对象FB。回调。 _gcb31({“id”:“10151457457579569”});
代码很简单,我使用正确的代码进行操作......我已经尝试过video.watches并观看
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();
}
}
);