class ApiService{ constructor(){} async get(id){ const baseUrl = `https://newsapi.org/v2/everything?q=esport&apiKey=${KEYAPI}`;//edit const headers = { method: 'GET' }; let response = await fetch(baseUrl, headers); console.log("response",response) let responseJson = await response.json() console.log("responseJson",responseJson) return responseJson; } async post(){ const baseUrl = `https://jsonplaceholder.typicode.com/posts/`;//edit const headers = { method: 'POST', headers: { 'Accept': 'application/json', 'Content-Type': 'application/json' }, body: JSON.stringify({ word:"yessss" }) }; fetch(baseUrl, headers).then( (response) => { if (response.ok) console.log("Posted") else throw new Error('Une erreur est survenue durant l\'appel HTTP.'); }) } }