Hello Coders,
I have been working on a project of mine to practice React.js and I am having trouble making a fetch request for a single game.
I used `http://www.giantbomb.com/api/search/api_key=${process.env.API_KEY}&format=json&query="${title}"&resources=gam e` to get a list of games with the same titles.
Now I wanted to try getting a single game using the guid or id.
Ive been trying `http://www.giantbomb.com/api/${gameId}}/?api_key=${process.env.API_KEY}&format=json` but I have been getting no luck at all.
Log in to comment