如何在Twitter API推文中使用分页?

时间:2018-09-26 10:47:20

标签: node.js rest api twitter

我正在使用node.js使用search/tweets/端点从Twitter REST API中提取推文。

我现在想在推文中添加分页。

我研究了since_idmax_idcount甚至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上添加分页的任何链接或教程吗?

0 个答案:

没有答案