Apple TV应用程序的PubNub推送通知

时间:2018-03-24 16:41:10

标签: swift apple-push-notifications tvos pubnub

是否可以在apple tv应用程序中使用pubnub发送推送通知,就像我们在移动应用程序中所做的那样。通过pubnub文档,但没有找到任何特定的Apple TV实现。

任何建议都会有很大的帮助。

1 个答案:

答案 0 :(得分:3)

PubNub - 发送移动推送通知

您可以在任何平台上发送移动推送消息。这仅要求您在发布的消息中包含正确的移动推送有效负载。这包括 Apple TV应用

  

是。可以在apple tv应用程序中使用PubNub发送推送通知。

Combine APNS and FCM/GCM Push Notifications

结合APNS和FCM / GCM推送通知

发送到APNS和GCM移动服务的字典对象必须采用格式良好的格式才能处理远程服务(由Apple,Google等运营)。

例如,当通过PubNub向Apple和Google发送原生APNS和GCM警报时,您可以采用以下格式发送:

{
    "name" : "Fitchwitz Technology",
    "pn_gcm": {
        "data": {
            "title_for_mobile": "Fitchwitz Technology",
            "summary_for_mobile": [ "Fitchwitz antivirals... more info at http://FitchwitzTech.com/fooz" ]
        }
    },
    "pn_apns" : {
        "aps" : {
            "alert" : "Fitchwitz Technology",
            "badge": 2,
            "summary_for_mobile": "Fitchwitz antivirals... more info at http://FitchwitzTech.com/fooz"
        }
    }
}

请查看文章Sending APNS and GCM Messages to Subscribers and Mobile Push Notification Services in One API Call,了解详情。