Sunday, 29 September 2013

Method to log events to a remote server?

Method to log events to a remote server?

I have an app that is running on a mobile device and I am thinking to log
some events (about users's operations, such as clicking on a certain item)
to a remote server.
The method I am thinking right now is to make a http request from the app,
such as
http://www.abc.com/log.php?operation=click&item=xxx
Hence, at the remote server, log.php can write the event (parsed from the
URI parameters) to the database.
Is this a good method?
Or any better suggestion to achieve this?
Thanks.

No comments:

Post a Comment