我使用Google api搜索进行了axios搜索,但返回了401未经授权(无效凭据)
我的代码如下
axios
.get(
"https://www.googleapis.com/customsearch/v1?key=AIzaSyAssMSJbk0A6Rza9aMfhjgeZiYfKH1kdn8&cx=003138940458556222423:awjyesdbipu&q=" +
this.state.query
)
.then(response => this.setState({ results: response.items }));
答案 0 :(得分:0)
这是因为查询时需要api键。
请参阅此链接,该文档还记录了如何获取密钥:
https://developers.google.com/custom-search/v1/overview#api_key