user1476956
user1476956

Reputation: 71

How do I host JSON files on my website?

One of my iPhone apps uses JSON data to populate it's database. However, I'd like to make that process automatic by hosting the JSON file online. How do I do this?

example of the content I want to host:

[{"Name":"John","Value":22,"Colour":"brown","City":"Auckland"}

Upvotes: 1

Views: 3848

Answers (2)

PakitoV
PakitoV

Reputation: 2498

Well you just need a hosting, upload your file and point your app to that file thats it. Search for any free hosting on google, there are plenty of them.

Upvotes: 1

David Jashi
David Jashi

Reputation: 4511

You can store them as files on your HTTP server or generate them from database with any of server-side languages.

Upvotes: 0

Related Questions