Push Notifications in Ionic 2 with the Pub/Sub Model

前端 未结 1 558
旧巷少年郎
旧巷少年郎 2021-01-26 12:01

I am using the phonegap-plugin-push plugin to do Push Notifications in an Ionic 2 Chat App.

I\'ve implemented it according to the documentation, and it works, but only o

相关标签:
1条回答
  • 2021-01-26 12:33

    Need to Change the Java Server to send to the topic instead of the device:

    jGcmData.put("to", "/topics/"+topics);
    

    see: https://developers.google.com/cloud-messaging/

    0 讨论(0)
提交回复
热议问题