检查权限(如果允许),将故事发布到新闻源

时间:2012-02-12 22:26:51

标签: javascript facebook permissions publish news-feed

我想要实现的目标非常简单。

  • 用户点击按钮
  • 应用程序检查发布到墙上和新闻源的权限
  • 如果获得批准,则显示发布对话框(带有自定义消息和图像)
  • 如果跳过,请关闭对话并不执行任何操作
  • 如果用户之前已向该应用授予了权限,则只需显示发布对话

我尝试使用开发人员页面上的示例执行此操作,但内容仅显示在用户的个人资料页面上,而不是新闻Feed中。

我正在使用Javascript。

如果你能给我一步一步指导如何做到这一点,我将永远感激。

1 个答案:

答案 0 :(得分:1)

请参阅https://developers.facebook.com/docs/reference/dialogs/feed/

<html xmlns="http://www.w3.org/1999/xhtml"
  xmlns:fb="https://www.facebook.com/2008/fbml">
  <head>
    <title>My Feed Dialog Page</title>
  </head>
  <body>
    <div id='fb-root'></div>
    <script src='http://connect.facebook.net/en_US/all.js'></script>
    <p><a onclick='postToFeed(); return false;'>Post to Feed</a></p>
    <p id='msg'></p>

    <script> 
      FB.init({appId: "YOUR_APP_ID", status: true, cookie: true});

      function postToFeed() {

        // calling the API ...
        var obj = {
          method: 'feed',
          link: 'https://developers.facebook.com/docs/reference/dialogs/',
          picture: 'http://fbrell.com/f8.jpg',
          name: 'Facebook Dialogs',
          caption: 'Reference Documentation',
          description: 'Using Dialogs to interact with users.'
        };

        function callback(response) {
          document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];
        }

        FB.ui(obj, callback);
      }

    </script>
  </body>
</html>