facebook java api:所有 feed_* 方法的替代品是什么?

发布于 2024-08-20 13:55:53 字数 80 浏览 8 评论 0原文

我看到所有 feed_* 方法均已弃用...(我使用的是版本 3.0.2)。 什么取代了它们?如何向用户的提要发布内容。

I see all the feed_* methods are deprecated... (I am using version 3.0.2).
What replaces them? How do I publish something to the user's feed.

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

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

发布评论

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

评论(1

安静 2024-08-27 13:55:53

这个答案并不是特别关于 Java API,但它可能仍然有用:

我们想提醒您,从那天开始,将 Feed 故事发布到流中的唯一方法是通过流发布方法(stream.publish、FB.Connect.streamPublish 和 Facebook.streamPublish)。使用流发布方法发布的帖子仅包含结构化纯文本数据,这使得它们更容易在各种设备上呈现,包括手机和游戏机。

当您调用users.setStatus和status.set时,我们仍然会发布故事,但我们鼓励所有开发人员迁移到流发布方法,因为它们可以让您轻松设置用户的状态。
在我们的开发者路线图的“Stream”页面上了解有关这些更改的更多详细信息。

(均来自发给 Facebook 应用程序开发人员的邮件)

因此,您可能应该寻找以 stream_* 开头的方法,而不是 feed_*

This answer is not about the Java API in particular, but it might still be useful:

We want to remind you that starting on that day, the only way to publish Feed stories into the stream will be via the stream publishing methods (stream.publish, FB.Connect.streamPublish, and Facebook.streamPublish). Posts published using the stream publishing methods contain only structured plain text data, which makes them easier to render on a variety of devices, including mobile phones and gaming consoles.

and

We will still publish stories when you call users.setStatus and status.set, but we encourage all developers to migrate to the stream publishing methods, as they let you set a user's status easily.
Read more detail about these changes on the Stream page of our Developer Roadmap.

(both from a mail to Facebook application developers)

So you should probably look for methods starting with stream_* rather than feed_*

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