I've created Create action in Open Graph App panel. I also had View action and attaching this action worked fine, now Facebook rejected View action and told me to use Watch which I am using now but same code, and action is not attached to the explicitly shared all goes well, I get returned object FB.callbacks._gcb31({"id":"10151457457579569"});
code is simple, am I using the right one for actions... I've tried video.watches and 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();
}
}
);
/me/video.watches. And the parameter name for the video OG URL has to match the object associated with it as well, of course, and not be justother… that’s all explained in the docs, btw. – CBroe Oct 2 '12 at 15:21