我正在尝试制作一个 Facebook 视频应用程序,以便用户可以使用 Facebook Open Graph 将存储在我网站上的视频显示在他们的墙上。
我正在使用以下代码进行用户登录。
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 'MYAPPID', // App ID
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
};
// Load the SDK asynchronously
(function(d){
var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
d.getElementsByTagName('head')[0].appendChild(js);
}(document));
</script>
现在如何实现 Watch 操作?
curl -F 'access_token=myaccesstoken' \
-F 'movie=http://samples.ogp.me/453907197960619' \
'https://graph.facebook.com/me/video.watches'
还有这个
curl 'https://graph.facebook.com/me/video.watches?access_token=myaccesstoken'
在 PHP 中?以及如何获取用户的访问令牌?