Home > other >  How to host a json file on the internet to consume with fetch?
How to host a json file on the internet to consume with fetch?

Time:05-28

I need to host a json file on the internet that allows GET and POST requests. I would consume data and send new data to this json, with javascript Fetch api would do the manipulations on the file. For a college activity, for a website I'm creating. would work like a "database".

No need to have security requirements.

CodePudding user response:

So, you can use this api https://myjson.dit.upm.es/ to store your data json and request it with FETCH API. I hope I have solved your problem

  • Related