Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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"}
share|improve this question

2 Answers

up vote 0 down vote accepted

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.

share|improve this answer
Oky then if i would like to update the json file what shall i do ??? – user1476956 Jun 4 at 18:32
Just replace it by the new version... or what do you mean? Put an example. – Emilio Jun 5 at 8:16

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.