I am developing an Android app that needs to communicate with a server. By that, I mean either the server or the device can send a message at any time. Briefly saying I want to let the user leave the feedback to another user. Something like leaving the feedbacks for example on ebay. Sending a data from android to the server is common and I understand that I can make a http request to run a php script, query a database and send back the response via a JSON object to android device. I would like to inform another user that he received the new feedback via the notifiactions. I know that I could periodically poll the server but I'm trying to avoid this as possible. I have read about Google Cloud Messaging. I'm wondering if there is another simpler or better approach to acheive this task? Please advice. Thank you.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
As you stated in your question, you have 2 options:
There is no other way how the device could get the knowledge about new stuff on the server (perhaps in a few years, using quantum entanglement would be a third option ;-) Push is mosten times better, as network activity only happens if there actually is something on the server. |
|||||||||||
|