Answer the question
In order to leave comments, you need to log in
`
Why 404 error?
Axios request:
return Axios.get({
headers: { 'Content-Type': "text/html; charset=utf-8" },
url: `https://api.forismatic.com/api/1.0/?method=getQuote&lang=en&format=json&json=?`
}).then((response) => response.data);
Answer the question
In order to leave comments, you need to log in
Most likely, the function expects a string as input, and you feed an object there.
Try like this:
return Axios({
method: 'get',
headers: { 'Content-Type': "text/html; charset=utf-8" },
url: `https://api.forismatic.com/api/1.0/?method=getQuote&lang=en&format=json&json=?`
}).then((response) => response.data);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question