如何获取 Facebook 应用程序创建的所有事件?
如何使用 Graph API 获取 Facebook 应用程序创建的所有事件?我尝试这样做,
$appevents = $facebook->api('/**applicationid**/events',
'get', array("fields"=>"id, name, start_time, updated_time"));
但没有成功。
How can I get all events created by a Facebook application using the Graph API? I tried doing
$appevents = $facebook->api('/**applicationid**/events',
'get', array("fields"=>"id, name, start_time, updated_time"));
but it did not work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除此之外,您应该可以开始了。另外,我将默认时区设置为 America/Los_Angeles。这可能会在以后引起问题,如果有人有更好的方法来处理它,请告诉我。
PHP 代码:
Other than that you should be good to go. Also, I set the default timezone to America/Los_Angeles. This will probably cause problems later, if anyone has a better way to handle it please let me know.
PHP Code: