我tryng獲得對某個帖子的self.text並使用這條路線:reddit的API錯誤嘗試通過snoocore獲得reddit的自我文本的node.js
reddit('/r/Denmark/comments/2jc5yk/how_to_live_in_denmark.json').listing({
context: 1,
limit: 10,
sort: 'hot',
})
.then(function(result) {
console.log(result);
});
我一直在使用.get()
也試過,不.json
而沒有/how_to_live_in_denmark
但仍然是相同的錯誤。
當我在瀏覽器中輸入路由時,我得到了所需的JSON。
的錯誤,我得到:
Uncaught Error: Invalid path provided! This endpoint does not exist. Make sure that your call matches the routes that are defined in Reddit's API documentation
我到底做錯了什麼?