Can't get json with axios.get and headers
I am trying to get the joke from https://icanhazdadjoke.com/. This is the code I used const getDadJoke = async () => { const res = await axios.get('https://icanhazdadjoke.com/', {headers: {Accept: 'application/json'}}) console.log(res.data.joke) } getDadJoke() I expected to get the joke but…