Open Graph App パネルで Create アクションを作成しました。View アクションもあり、このアクションをアタッチすると正常に機能しました。Facebook は View アクションを拒否し、現在使用している Watch を使用するように指示しましたが、同じコードであり、アクションは明示的に共有されたものにアタッチされていません。すべてうまくいき、オブジェクト FB が返されます。 . コールバック。_gcb31({"id":"10151457457579569"});
コードは単純です。アクションに正しいものを使用していますか... video.watches と watch too を試しました
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();
}
}
);