仅当我在线时才进行 Facebook 直播
我想显示一个 Facebook 直播框,但仅限于我在线时。 有没有办法检查我是否在线? 也许用php?
我找到了一些建议,但它们似乎很旧......
I would like to show a facebook livestream box, but only when I'm online.
Is there a way to check if I'm online?
Maybe with php?
I found some suggestions but they seem to be old....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于您的帐户,获取具有
user_online_presence
和offline_access
权限的访问令牌。然后,您可以使用该访问令牌运行以下 FQL 查询:然后,如果 online_presence 为“活动”或也可能为“空闲”,则仅在页面上呈现直播插件。
For your account, get an access token with the
user_online_presence
andoffline_access
permissions. Then you can run the following FQL query with that access token:Then just only render the livestream plugin on your page if online_presence is 'active' or maybe also 'idle'.