I was wondering, what is the best method for allowing consumers to post strings to your app. I would like the method used to be easily tie able into both Android and iOS so that consumers of either can view the same data. Preferably a method in which I am able to approve of the content prior to it getting on the server or whatever method would work best.
An example of what I mean is the “Funny Jokes” app that is on the Android market. They allow you to post a joke which becomes readable by everyone.
Thanks in advance.
The easiest way, would be to have a small database online, the apps can call a script which will post the joke to a database.
Then you will have a record of all the submissions, you could use another table, which would hold all the jokes the app displays, then you can transfer as you wish.