haythem souissi
haythem souissi

Reputation: 3273

How can i put json on internet

i am an android developer (beginner). I never developed a server or php site. But in some project i developed android application which send and receive parameters using web services. I want to know how can add my json file to the internet so i can obtain an url containing this JSON file, so i can read it from my android application. I know how to read it but i want just to know how to put it in internet so this file will have an url. And is it possible to change the json file without changing the url?

Upvotes: 0

Views: 495

Answers (2)

Yumick Gharti
Yumick Gharti

Reputation: 1196

first, go to this link "http://myjson.com/" Paste your json code there. Then you will be provided a link by json ......then you can use this link in your project.

Upvotes: 1

Ignacio Vazquez-Abrams
Ignacio Vazquez-Abrams

Reputation: 799210

JSON data is usually generated by a web application, but it is possible to put a file containing the JSON data on a server to be served by a normal web server.

Upvotes: 0

Related Questions