Facebook Open Graph Watch行动

时间:2012-07-08 13:46:21

标签: php facebook-graph-api facebook-php-sdk

我正在尝试制作一个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中的

?我如何获得用户的访问令牌?

1 个答案:

答案 0 :(得分:1)

在PHP SDK 3.1.1中获取用户访问令牌:

// Get the current access token
$access_token = $facebook->getAccessToken();

请参阅:https://developers.facebook.com/docs/reference/php/facebook-getAccessToken/


发布操作。

请参阅:https://developers.facebook.com/docs/opengraph/tutorial/

本教程将指导您完成构建,测试和发布第一个Open Graph应用程序的关键步骤。我们将构建一个示例配方应用程序,允许用户发布有关烹饪食谱的故事。在开始之前,请查看Open Graph Checklist,它不仅有助于您的应用程序设计和规划,还有助于加快应用程序审核过程。

第1步:创建Facebook应用程序。 https://developers.facebook.com/docs/opengraph/tutorial/#create-app

步骤2:使用“登录按钮”插件对用户进行身份验证。 https://developers.facebook.com/docs/opengraph/tutorial/#authenticate

步骤3:通过App Dashboard定义对象,操作和聚合。 https://developers.facebook.com/docs/opengraph/tutorial/#define

第4步:为用户发布操作。 https://developers.facebook.com/docs/opengraph/tutorial/#publish

第5步:将社交插件添加到您的应用程序。 https://developers.facebook.com/docs/opengraph/tutorial/#plugins

第6步:提交您的行动以获得批准。 https://developers.facebook.com/docs/opengraph/tutorial/#submit

实施例

if ($user){
    $queries = array(
        // The URL build is me/ namespace : action ? object = URL
        array('method' => 'POST', 'relative_url' => '/me/anotherfeed:view?feed=http://anotherfeed.com/')
        // Any other API calls needed, this is a batch request for performance.
    );

    try {
        $postResponseA = $facebook->api('?batch='.json_encode($queries), 'POST');
    }
    catch (FacebookApiException $e) {
        //echo 'AF error: '.$e.'';
    }
    // Returns the id of posted actions if true.
    $actions = json_decode($postResponseA[0][body], true);