从 subreddit 请求 json 时如何设置条目数限制
How to set limit of number of entries while requesting a json from subreddit
async with aiohttp.ClientSession() as cs:
async with cs.get('https://www.reddit.com/r/memes/hot.json') as r:
res = await r.json()
这是我从 reddit 获取 json 的代码,但它只获取 25 个条目。如何获得更多?
添加 ?limit=somevalue
应该会给您带来更多结果。
https://www.reddit.com/r/memes/hot.json?limit=100
async with aiohttp.ClientSession() as cs:
async with cs.get('https://www.reddit.com/r/memes/hot.json') as r:
res = await r.json()
这是我从 reddit 获取 json 的代码,但它只获取 25 个条目。如何获得更多?
添加 ?limit=somevalue
应该会给您带来更多结果。
https://www.reddit.com/r/memes/hot.json?limit=100