obiboss
obiboss
when i try to visit this site https://forkify-api.herokuapp.com/api/v2/recipes/ i receive an error message { "status": "error", "message": "Something went very wrong!" } I would like to know how to resolve...
Thanks akozdev i noticed it worked on the browser but I didn't think to try it out in the code as it looked a bit weird
However the goal was to sendJSON(url, recipe) but i get the error message so if i were to use this /recipes?search=pizza example i would get a list of pizza and...
> The `/recipes` endpoint has a required `search` parameter, so in order to make it work, you will need to pass some search query, for example, `/recipes?search=pizza`. > > I...
> To upload a new recipe, send a `POST` request to the `/recipes` endpoint. In this case, you only need to provide your API key in the params, like this...
I have seen the error an unused variable i was using fetch(url) when i had created a variable named fetchPro to store it already. Thanks a lot it was really...