So I'm using Google Books API and my code looks as follow:
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));
On using this API, I'm getting the following error:
I did a bit of research online and it's saying that we get this error when we make way too many requests from a given API key but I have made only 5 till now and still it's throwing this error.