“API ficticia JSON” Código de respuesta

API ficticia JSON

var xhr = new XMLHttpRequest();
xhr.open("GET", "https://reqres.in/api/products/3", true);
xhr.onload = function(){
    console.log(xhr.responseText);
};
xhr.send();
				

API ficticia JSON

var xhr = new XMLHttpRequest();
xhr.open("GET", "www.carimagery.com/api.asmx/GetImageUrl?searchTerm=corolla", true);
xhr.onload = function(){
    console.log(xhr.responseText);
};
xhr.send();
				
Itchy Ibis

Respuestas similares a “API ficticia JSON”

Preguntas similares a “API ficticia JSON”

Más respuestas relacionadas con “API ficticia JSON” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código