Facebookのビデオアプリケーションを作成して、ユーザーがFacebookOpenGraphを使用して自分のサイトに保存されているビデオを壁に表示できるようにしようとしています。
ユーザーログインには以下のコードを使用しています。
<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で?また、ユーザーのアクセストークンを取得するにはどうすればよいですか?