我正在使用node.js使用search/tweets/
端点从Twitter REST API中提取推文。
我现在想在推文中添加分页。
我研究了since_id
,max_id
,count
甚至cursoring
。
但是我不知道如何将它们放在一起。
以下是响应中的search_metadata
字段:
[search_metadata] => Array
(
[completed_in] => 0.057
[max_id] => 4.1747346982858E+17
[max_id_str] => 417473469828583425
[next_results] => ?max_id=416844457594855423&q=place&result_type=mixed
[query] => place
[refresh_url] => ?since_id=417473469828583425&q=place&result_type=mixed
[count] => 15
[since_id] => 0
[since_id_str] => 0
)
我假设要移至next
页面,我们可以使用[next_results]
字段,但是如果我们想移至previous
页面怎么办?
有人可以建议我有关在tweet上添加分页的任何链接或教程吗?