我使用Back 4app,它使用Parse Server和node.js(axios模块)来实现对API-football的调用。我得到了一个200成功的响应代码,运行如下的模板代码,但它总是返回一个空的{}响应(失眠)。提前感谢您的帮助。
Parse.Cloud.define("next50", (request)=>{
const axios = require("axios");
const options = {
method: 'GET',
url: 'https://api-football-v1.p.rapidapi.com/v3/fixtures',
params: {next:'50'},
headers: {
'X-RapidAPI-Key': 'd69302225emshdf770c890926efdp19ca04jsn08d2244e2253',
'X-RapidAPI-Host': 'api-football-v1.p.rapidapi.com',
}
};
axios.request(options).then( function (response) {
return response.data;
}).catch(function (error) {
return error;
});
});
1条答案
按热度按时间yhived7q1#
我仔细阅读了axios文档,并实现了一个有效的代码,返回正确的JSON响应。
以下是回应:
向所有人致以最诚挚的问候。