adrianhajdin/project_fitness_app

trying to fetch the data at 54:00 but im getting a 404 not found and Uncaught (in promise) SyntaxError: Unexpected token < in JSON at position 0

Closed this issue · 0 comments

`const axios = require("axios");

export const exerciseOptions = {
method: "GET",
url: "https://exercisedb.p.rapidapi.com/exercises/bodyPartList",
headers: {
"X-RapidAPI-Key": "18a665e221mshf1d7bea141505c2p1564a3jsnaa88558458d8",
"X-RapidAPI-Host": "exercisedb.p.rapidapi.com",
},
};

export const fetchData = async (url, options) => {
const res = await fetch(url, options);
const data = await res.json();

return data;
};
`

image