fetching with GET

PHOTO EMBED

Wed May 05 2021 09:20:33 GMT+0000 (Coordinated Universal Time)

Saved by @captm #fetch #json #get

fetch("http://www.omdbapi.com/?s=harry potter&apikey=adf1f2d7")
  .then(response => response.json())
  .then((data) => {
    console.log(data);
  });
content_copyCOPY

https://kitt.lewagon.com/camps/591/lectures/04-Front-End/06-HTTP-and-AJAX