推送通知未传递quickblox

时间:2018-07-03 12:52:04

标签: ios swift xcode chat quickblox

我正在尝试为离线用户发送推送通知,但未发送到设备

环境详细信息: ios聊天应用程序,我正在使用cocoapods的最新版本

预期的行为:它应该在设备上显示推送通知

实际行为 我已上传证书, it is showing valid

我已经检查了在订阅it is showing my device udid中被审核的设备

发送的通知也是shows in queue on quickblox,这里是发送的推送的日志,显示已发送为NULL,没有错误

{
  "notification": {
    "id": 15460780,
    "badge": 45,
    "device_token": "0780db28ac60e37390e067f5b1d88688d804f594152827b1b28f86e670669530",
    "sound": "default",
    "alert": "Test User: Hello",
    "data": {
      "dialog_id": "5b3b4b9ba0eb474bbc0244eb",
      "user_id": 53886466,
      "message_id": "5b3b6a6b2d3084b447b7ad3d",
      "badge": 45,
      "headers": {
        "apns-topic": "com.company.app"
      },
      "__rpush_content_available__": true,
      "__rpush_mutable_content__": true
    },
    "expiry": 86400,
    "delivered": false,
    "delivered_at": null,
    "failed": false,
    "failed_at": null,
    "fail_after": "2018-07-03T13:22:05+00:00",
    "retries": 118,
    "error_code": null,
    "error_description": null,
    "deliver_after": "2018-07-03T12:31:57+00:00",
    "alert_is_json": null,
    "app_id": 23880,
    "collapse_key": null,
    "delay_while_idle": null,
    "registration_ids": null,
    "uri": null,
    "priority": null,
    "url_args": null,
    "category": null,
    "content_available": false,
    "mutable_content": false,
    "notification": null,
    "type": "Rpush::Client::Redis::Apns::Notification",
    "event_id": 24743581,
    "event_date": "2018-07-03T12:22:05+00:00"
  },
  "log": [
    {
      "device_token": "0780db28ac60e37390e067f5b1d88688d804f594152827b1b28f86e670669530",
      "delivered_at": null,
      "failed_at": null,
      "error_code": null,
      "error_description": null
    }
  ]
}

我也尝试过使用相同的证书通过第三方(pushtry.com)发送推送,并且它正在发送推送但带有quickblox,它没有显示任何推送通知

2 个答案:

答案 0 :(得分:2)

好像是Quickblox服务器端问题。可能他们没有通过APNS的最新更改来调整设备中的服务器。我要求他们的支持,但他们没有回答。

答案 1 :(得分:0)

苹果有效载荷的

json推送通知应采用以下格式

{
    "aps": {
        "alert": "Hello World",
        "sound": "default"
    },
    "Person": {
        "Address": "this is a test address",
        "Name": "First Name",
        "Number": "023232323233"
    }
}