获取所有通知
我可以通过以下查询轻松获取未读通知: https://graph.facebook.com/USER_ID/notifications?access_token=ACCESS_TOKEN
所有通知(标记为已读)也可以吗?
I can easily get the unread notifications with this query:https://graph.facebook.com/USER_ID/notifications?access_token=ACCESS_TOKEN
Is it possible to all the notifications (marked as read) too?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以将参数 include_read 指定为 1 以表示您希望接收已读通知。
Yes, you can specify the parameter include_read as 1 to indicate you wish to receive read notifications.
这个链接可能对你有帮助
http://developers.facebook.com/docs/howtos/notifications-api/
使用 API
应用程序可以通过使用应用程序 access_token 向 /user_id/notifications Graph API 发出 HTTP POST 请求来生成通知。
POST /{recipient_userid}/notifications?access_token= … &template= … &href= …
this link may be help you
http://developers.facebook.com/docs/howtos/notifications-api/
Using The API
Applications can generate notifications by issuing a HTTP POST request to the /user_id/notifications Graph API, with a app access_token.
POST /{recipient_userid}/notifications?access_token= … &template= … &href= …