我喜欢 GNU Parallel 并尝试将其用于分页,但需要帮助才能使其成功运行。基本上,我遵循 Quickblox API 指南中的用例来获取数据:
http://quickblox.com/developers/Custom_Objects#Get_related_records
一个人可以检索的最大记录数是每页 100 条,并且一次只能检索一页。这些是通过 -d 参数指定的。我想使用 GNU Parallel 来获取第 1..79 页。
我找到了一个线程,它解释了当您的参数具有许多不同的值但无法成功地适应我的情况时如何使用 GNU Parallel。
GNU Parallel - 并行化串行命令行程序而不更改它们
您的帮助将不胜感激!
curl -X GET -H "QB-Token: 7de49c25f44e557aeed1b635" -d "page=3" -d "per_page=100" https://api.quickblox.com/users.xml > qblox_users_page3_100perpage