IGDB-如何从igdb.com获取JSON数据?使用Axios和Node.js

时间:2020-08-10 12:42:10

标签: node.js api axios

我是一名初学者程序员,我正在使用以下代码从IGDB API中获取数据。

    axios.get('https://api-v3.igdb.com/games', {
    headers: {
        'user-key': 'my-key'
    }
   
}).then(res => console.log(res)).catch(error => console.log(error))

它不是游戏,而是很多东西。我想要游戏的JSON数据。我该如何获取?请帮忙。文档为here

1 个答案:

答案 0 :(得分:0)

可能是在axios响应下,您需要访问data对象,如下所示

axios.get('https://api-v3.igdb.com/games', {
    headers: {
        'user-key': 'my-key'
    }
   // use res.data
}).then(res => console.log(res.data)).catch(error => console.log(error))