Reddit API 不返回 NSFW 帖子

Reddit API not returning NSFW posts

当我将 link 放入浏览器时,我得到了结果,而不是当我从我的应用程序进行调用时。我首先假设这是 reddit 的东西,但如果是这样,那我为什么能够从浏览器中看到数据。 下面是两个示例 links,一个有效,一个无效 - 唯一的区别是一个来自 NSFW 子。

axios.get('https://www.reddit.com/r/nsfw/search.json?q=example&restrict_sr=true')

axios.get('https://www.reddit.com/r/aww/search.json?q=cat&limit=1&sort=top&restrict_sr=true&after=null')

您需要包含 include_over_18 参数。

尝试axios.get('https://www.reddit.com/r/nsfw/search.json?q=example&restrict_sr=true&include_over_18=on')