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.

When an update is happening on the server side for a specific user then the server will notify to that user by pushing a notification.

Let two client A and B are friend. Both have registered to the server. Both have a message field in the database for storing message receiving from others.

B has sent a message to A's message field. Now server's task is to check A's message field. If there is a recent message for A, then the server will notify A by sending this message. How can i solve this. Any suggestion will appreciate..

share|improve this question

1 Answer

Google has a push notification system for android called C2DM

Keep in mind this system is merely designed to sign A that there is a new message, not to actually push the complete message to the device. After receiving the notification the device should contact the server to fetch the message.

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.