我怎样才能制作像《华盛顿邮报》社交阅读器这样的东西?

发布于 2024-12-13 21:39:42 字数 314 浏览 0 评论 0原文

我制作了一个使用以下代码自动发布到我的时间线的应用程序:

  FB.api(
    '/me/linksku:read?article=<?php echo $permalink; ?>',
    'post',
    function(response) {
      if (!response || response.error) {
        alert('Error occured');
      }
    }

但是,这只适用于我。它对其他人不起作用。我怎样才能制作像《华盛顿邮报》社交阅读器这样的东西?

I make an app that automatically posts to my timeline using the following code:

  FB.api(
    '/me/linksku:read?article=<?php echo $permalink; ?>',
    'post',
    function(response) {
      if (!response || response.error) {
        alert('Error occured');
      }
    }

However, this only works for me. It doesn't work for anyone else. How can I make something like the Washington Post Social Reader?

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

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

发布评论

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

评论(2

早茶月光 2024-12-20 21:39:42

只有当您从开发者仪表板提交操作以供批准后,Facebook 批准您的操作后,您所看到的内容才会对 Facebook 上的每个人可见。目前,所有批准都在等待 Facebook 向所有人发布时间表。

What you are seeing will be visible to everyone on Facebook only after Facebook approves your actions after you submit them from your developer dashboard for approval. Currently all approvals are pending until Facebook releases timeline to everyone.

苍白女子 2024-12-20 21:39:42

您必须在网站上实现开放图并设置操作类型。还需要实现开放图元标签。

查看这个链接,其中实现了开放图元标记。

You have to implement open graph on your website and set action types. Also open graph meta tags need to be implemented.

Look at this link where open graph meta tags are implemented.

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