Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The difference between GCM and PARSE push messages

I am buiding an android app which will be receiving notifications from my server. This means all my users which is above 1 million, will receive notifications from my server. I know parse and google cloud messaging(GCM) can do the push messages but please I want to know the best out of this two (parse and GCM) so I can implement it. Thanks in advance.

like image 286
George Avatar asked Jun 01 '15 21:06

George


People also ask

What is GCM push notification?

Google Cloud Messaging (GCM) was a mobile notification service developed by Google that enables third-party application developers to send notification data or information from developer-run servers to applications that target the Google Android Operating System, as well as applications or extensions developed for the ...

What is the difference between push notification and normal notification?

Purpose: a push notification brings the users to the application whereas an in-app notification guides the users inside the app.

What is push messages on android?

The definition of push notification Push notifications are messages that can be sent directly to a user's mobile device. They can appear on a lock screen or in the top section of a mobile device.


1 Answers

If you look at https://parse.com/tutorials/android-push-notifications you can see:

The Parse library provides push notifications by using Google Cloud Messaging (GCM).

So you have to register your app to GCM console to send push notification in anyway.

When to NOT use parse.com?

If you already have a backend service, you can easily implement push notification since there are plenty of third part libraries for different platforms such as node.js, php etc.

When to use parse.com?

If you don't have backend-service and you just want to send push notifications also if you don't want to spend your time by setting up server stuff then you can go with parse.com

NOTE: Facebook shuts down parse by January 2017 so please consider it.(http://blog.parse.com/announcements/moving-on/)

like image 59
orhankutlu Avatar answered Sep 19 '22 18:09

orhankutlu