我正在使用没有文档的API,我知道端点是什么,但是我不知道如何传递以及正确的参数在哪里。 我正在React项目中使用Axios。
这是我需要的端点: https://apiname.com/v1.0/metadata/noun/search?nouns=game,genre,country&include_aliases=true
问题是,如果我手动通过“名称,流派,国家/地区”,则会显示一个错误。 我可以从API获取其他数据,所以我知道它正在工作,但是我不知道如何访问或使用此端点。
这是我尝试手动传递的方式
axios.get("https://apiname.com/v1.0/metadata/noun/search?nouns=Minecraft,Adventure,Canada&include_aliases=true", header)
.then((res) => {
console.log(res)
})
错误:“请求失败,状态码为405”