Random Famous Quotes

GRATIS CON POSSIBILITÀ DI UPGRADE
Da Andres Olvera | Aggiornamento 4日前 | Data
Popolarità

9.5 / 10

Latenza

469ms

Livello di servizio

100%

Health Check

N/A

Torna a tutte le discussioni

API not returning content

Rapid account: Dgullifo
dgullifo
5年前

Using the JS fetch method, from inside html page, identical to the snippet.

This is what I get in the console:

Response {type: “cors”, url: “https://andruxnet-random-famous-quotes.p.rapidapi.com/?cat=famous&count=10”, redirected: false, status: 200, ok: true, …}
body: (…)
bodyUsed: false
headers: Headers {}
ok: true
redirected: false
status: 200
statusText: "OK"
type: "cors"
url: "https://andruxnet-random-famous-quotes.p.rapidapi.com/?cat=famous&count=10"
proto: Response

i.e. no valid response text. Any ideas what I am doing wrong? . Tks!

Rapid account: Payamazadi Natgeo
payamazadi-natgeo Commented 5年前

as i said earlier, add a user-agent header.

Rapid account: Dgullifo
dgullifo Commented 5年前

Update: the API return works when I add an extra promise to the fetch-based JS snippet:

})
.then(response => response.json()) << added to get the response to work as intended
.then(response => {
console.log(response);
})

I got the idea from this thread: https://stackoverflow.com/questions/33237200/fetch-response-json-gives-responsedata-undefined

Rapid account: Dgullifo
dgullifo Commented 5年前

OK so how do I share the code so that it will display correctly in this comment box? --It looks like the parser substitutes for all the <> and completely hides the javascript…

Rapid account: Andruxnet
andruxnet Commented 5年前

Are you using a GET request or a POST request? If it is a GET request, could you please share your code for me to try it?

Partecipa alla discussione - aggiungi un commento di seguito:

Accedi/Iscriviti per pubblicare nuovi commenti