Reddit API不返回NSFW帖子

时间:2020-08-16 01:08:01

标签: javascript reactjs reddit

当我将链接放入浏览器时,我会得到结果,而不是从应用程序拨打电话时,结果不是。我首先通过reddit假设这是某种东西,但是如果是这样,那我为什么还能从浏览器中查看数据。 以下是两个示例链接,一个起作用,一个不起作用-唯一的区别是一个来自NSFW子。

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

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

1 个答案:

答案 0 :(得分:0)

您需要包括include_over_18参数。

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