I need to use Baidu Push notification in my app. But it is very difficult to find the documentaion on it to know about the difference from GCM. Is there any document or site available to know the exact difference between GCM and Baidu Pushnotification ? Also which is better to use in terms of performance ?
Difference between GCM and Baidu Push Notification
5k Views Asked by Ravi Kumar At
1
There are 1 best solutions below
Related Questions in PUSH-NOTIFICATION
- Android: Transferring Data via ContentIntent
- Android Status Bar Icon Size - Using Cordova / Phonegap Push Plugin
- Parse.com - setting up push notifications for single users
- Android Push Notification - Parsing JSON Notification tag name to get raw file (Resource Id or Uri)
- Notification using setFullScreenIntent() for BigTextStyle opening Activity automatically
- Xiaomi does not receive a notification when the application is not running
- Is it possible to send push notifications as per user preference(Time) from parse?
- Cancel pending push notification
- GCM set expiration date for push notifications
- JPush works all over the world?
- Allow user to select notification sound in iOS Notification Settings
- Ios Push notifications not working. (Google play games unity plugin)
- Push notifications that trigger a background refresh before showing the push notification VS silent push
- JavaPNS NoClassDefFoundError
- p12 certificate is always incorrect at Pushwoosh
Related Questions in GOOGLE-CLOUD-MESSAGING
- Android: Transferring Data via ContentIntent
- Unable to receive extras in Android Intent
- ACCESS_COARSE_LOCATION merged from play-services-base lib
- How to handle RabbitMQ with mobile apps
- Xamarin Google Cloud Messaging GcmClient.CheckDevice(this) causes runtime error
- Why is my own sender ID getting back an InvalidRegistration message?
- unable to register (com.google.iid error 1005.)
- New GCM google-services.json and plugin needed?
- Xiaomi does not receive a notification when the application is not running
- How to implement Google Cloud Messaging - Topic Messaging in Chrome?
- Is it possible to send push notifications as per user preference(Time) from parse?
- GCM set expiration date for push notifications
- JPush works all over the world?
- Identifying Sender of Upstream GCM Message
- Deleting Repeated Services from Android GCM Config File
Related Questions in BAIDU
- How to reduce 100 mark to 50 mark in Echarts Baidu - Gauge Chart
- Baidu Echart World Map looks very distorted
- Baidu Push Notifications in Android
- Ionic 3: Baidu map working only in browser
- Difference between GCM and Baidu Push Notification
- Baidu push notification channel id is not generated on one plus 3 phone with oxygen os 4.1.7 and android V7.1.1
- WorkManager not working for Baidu Push SDK
- Issue with Push Notifications from PWA to Devices in China, Seeking Guidance on Implementation
- Echarts : How to call custom function on click of title?
- how can i publish and subscribe an image (using mqtt in python)
- How to change the color of Select Bar in Echart barchart in react
- Baidu Push Notification
- cannor resolve symbol "baidu" android studio
- How to install Mozilla's implementation of Baidu deep speech on Windows?
- Play Integrity alternative for China region
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
In terms of functionality there is no
differencebetween GCM and Baidu Push notifications.Baidu can be considered as an alternative for your GCM in china, as most of the Google services are blocked in China. Since, GCM is a part of Google-play-services package, it is also blocked in China.
Documentation:For this you would need to use google translate on pages specified below (ie. once the page is loaded, right click and select translate to english) :Step 1: Create a new Developer account on Baidu platform. (If you do not possess a Mainland China Phone number, it is not possible to create a Baidu developer account)
Step 2: Download the Android SDK for Baidu push services from the below address: http://push.baidu.com/sdk/push_client_sdk_for_android
Step 3: Integrate the above downloaded SDK into your app like you would do for any SDK that has *.so (Shared Object file libraries) files. That is you need to put them in your
jniLibs/Step 4: Then like in GCM console you create a new application with its application Id/ Package Name, in baidu as well you need to do the same. That is goto the below URL (Make sure you are logged in): http://push.baidu.com/console/app On this console page Create a new application (Use Google translate plugin on Chrome).
Step 5: Once a new application is created, your application will be assigned a
API Keyand aSecret Key. Inorder to receive Push notifications, you need to used theAPI Keyas specified in the below page: http://push.baidu.com/doc/android/api All the development steps are specified in the above link. Just translate the page to follow the same.Step 6: In
GCMyou can either send a push notification using the GCM console or you can use your own server to send aGCMnotification to the device. Its the same on Baidu as well. Details are in the above link.Performance:From my personal experience, i feel GCM is really good. I always get the Notification immediately. However, in case of Baidu, it does take sometime for the notification to arrive(most of the times).
Also there is a Demo example which comes along with the SDK. You can keep that as a reference while developing the app.