OpenGraph - 设置到期时间?

发布于 2024-12-07 08:46:29 字数 133 浏览 0 评论 0原文

所以,在 Facebook 上,股票行情显示了我网站浏览量中的最新故事, 现在,我需要做什么才能让股票显示有人正在“查看”帖子的事实。

我尝试的任何操作最终都会说“查看”帖子。 有没有办法让它通过 opengraph 说“正在查看”?

So, on facebook, the ticker shows recent stories from views to my site,
now, what would i need to do to make the ticker display the fact that someone is 'viewing' a post.

Anything i try just ends up saying 'viewed' a post.
Is there a way to make it say 'is viewing' through opengraph?

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

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

发布评论

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

评论(1

新雨望断虹 2024-12-14 08:46:29

您应该设置开始时间(过去)和结束时间(将来)。

可以使用
Expires In而不是结束时间(如果您愿意的话)。

当用户仍在您的网页上(查看帖子)时,您可以定期更新操作 以防止其过期。

例如,如果您假设用户阅读帖子至少需要 2 分钟,则可以执行以下操作:

当用户首次打开网页时:

  • 使用 start_time=now 和 expires_in 创建操作=120
  • 保存操作 ID 以供将来更新

用户仍在网页上的每一分钟:

  • 使用 expires_in=120 更新操作

You should set the Start Time (in the past) and the End Time (in the future).

Expires In can be used instead of End Time if you prefer that.

While the user is still on your web page (viewing a post) you can regularly update the action to keep it from expiring.

If you for example assume that it takes at least 2 minutes for a user to read a post, you can do this:

When the user first opens the web page:

  • Create the action with start_time=now and expires_in=120
  • Save the action ID for future updates

Every minute the user is still on the web page:

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