所以我正在使用Google Books API,我的代码如下:
axios
.get(
"https://www.googleapis.com/books/v1/volumes?q=" +
this.props.categoryName +
"&key=myKey"
)
.then((response) => {
console.log(response);
})
.catch((err) => console.error(err));
使用此API时,出现以下错误:
[我在网上做了一些研究,这就是说,当我们从给定的API密钥发出太多请求时,会收到此错误,但到目前为止我只发出了5次,仍然会引发此错误。
任何帮助将不胜感激。谢谢!
The default limit is 1,000 per day.