React Axios 401未经授权的GoogleAPI CustomSearch

时间:2019-07-06 20:39:34

标签: reactjs google-api axios

我使用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 }));

1 个答案:

答案 0 :(得分:0)

这是因为查询时需要api键。

请参阅此链接,该文档还记录了如何获取密钥:

https://developers.google.com/custom-search/v1/overview#api_key