检查权限,如果允许,将故事发布到新闻提要

发布于 2025-01-04 12:08:10 字数 300 浏览 0 评论 0原文

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

  • 用户单击按钮
  • 应用程序检查发布到墙和新闻提要的权限
  • 如果授予,则显示发布对话框(带有自定义消息和图像)
  • 如果跳过,则关闭对话框并且不执行任何操作
  • 如果用户之前已授予应用程序权限,则仅显示发布对话

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

我正在使用 JavaScript。

如果您能为我提供有关如何执行此操作的分步指南,我将永远感激不已。

What I want to achieve is quite straightforward.

  • User clicks button
  • App checks for permissions to post to wall and news feed
  • If granted, show publish dialogue (with a custom message and image)
  • If skipped, close the dialogue and do nothing
  • If user had granted permissions to the app before, just show the publish dialogue

I tried doing this with the examples on the developer's page, but the content only appeared on the user's profile page, and not on the news feed.

I'm working with Javascript.

If you could give me a step by step guide on how to do this, I'd be eternally grateful.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧情勿念 2025-01-11 12:08:10

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

<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>

See 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>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文