在Google云消息传递中订阅标记

时间:2016-03-16 07:08:43

标签: google-cloud-messaging azure-mobile-services

我正在使用Windows Azure Notification Hub和Android,通过GCM测试通知推送服务。我正在使用标签,从与Windows Azure集成的Web应用程序(后端)推送通知。

问题是:我不知道如何从Android应用程序订阅以收听这些标签。

1 个答案:

答案 0 :(得分:1)

使用Azure Mobile Apps Server SDK创建自定义API。这应该获取设备注册ID,然后使用通知中心进行注册。 Azure Mobile Apps Server SDK为此目的包装了Notification Hubs SDK。

在您的客户端中,您可以按推送适当的客户端SDK教程(Android为here),但使用InvokeApi调用自定义API进行注册,而不是调用client.getPush().register() }。

另一个很好的参考是Android Client HOWTO Docs