我在尝试使用Facebook SDK在Javascript上发布操作时遇到了一些麻烦,我不确定我是否遗漏了某些东西或者代码有问题。
FB.api(
'me/video.watches',
'post',
{
video: "video-url.com/opengraph" ,
created_time: now,
expires_in: 7200
},
function(response) {
// handle the response
console.log("Watched.");
console.log(response);
}
);
我收到的对象实际上是一个有效的对象我没有得到错误,所以我无法在新闻Feed中看到我看过那部特定的电影:(
我错过了什么吗?
感谢。