使用分页有没有办法通过 graph api v6.0 获取 facebook 消息?
Using pagination is there a way to get facebook messages via graph api v6.0?
有没有办法通过 graph api v6.0 获取 facebook 消息?我无法在 "conversations" 端点上使用 "since"、"until" 分页。
https://graph.facebook.com/[USER_ID]/conversations?since=<unix_timestamp>&access_token=[ACCESS_TOKEN]&debug=all
我无法使用 "thread_id" 端点,因为它在较新版本的图表 api 中已弃用。
关于 since
和 until
,似乎并非 Facebook Graph API 的所有端点都可以与基于时间的分页一起使用。文档 (https://developers.facebook.com/docs/graph-api/reference/v6.0/conversation) 说:
The Conversations edge is not a Time-Based edge.
想法是使用基于光标的分页,它适用于对话,这里描述这种分页的想法:
https://developers.facebook.com/docs/graph-api/using-graph-api/
有没有办法通过 graph api v6.0 获取 facebook 消息?我无法在 "conversations" 端点上使用 "since"、"until" 分页。
https://graph.facebook.com/[USER_ID]/conversations?since=<unix_timestamp>&access_token=[ACCESS_TOKEN]&debug=all
我无法使用 "thread_id" 端点,因为它在较新版本的图表 api 中已弃用。
关于 since
和 until
,似乎并非 Facebook Graph API 的所有端点都可以与基于时间的分页一起使用。文档 (https://developers.facebook.com/docs/graph-api/reference/v6.0/conversation) 说:
The Conversations edge is not a Time-Based edge.
想法是使用基于光标的分页,它适用于对话,这里描述这种分页的想法: https://developers.facebook.com/docs/graph-api/using-graph-api/