Невозможно проанализировать gcm.notification.data из push-уведомления - PullRequest
0 голосов
/ 11 декабря 2018

Я не могу получить Data словарь из push-уведомлений Firebase.

Мой код :

class func parseIncommingMessages(notification:UNNotification) {
    print("PushNotifications: \n \(notification.request.content.userInfo.debugDescription)")

    let userInfo = notification.request.content.userInfo as! [String: Any]
    let dicDataContainer = userInfo["gcm.notification.data"] as? [AnyHashable:Any]

    //       notification
    if let dicDataMain = dicDataContainer?["Data"] as? [String:Any] , let notificationType = dicDataContainer?["notificationType"] as? String
    {
            print("\nData: \(dicDataMain)")
            print("\n NotificationType: \(notificationType)")
    }

}

PushNotifications:

[AnyHashable("gcm.message_id"): 0:1544560847941727%a27b0018a27b0018, AnyHashable("google.c.a.e"): 1, AnyHashable("gcm.notification.data"): {"Data":{"Name":"a","message":"test","operation":"change"},"notificationType":"status_change"}, AnyHashable("aps"): {
    alert =     {
        body = Somthing;
        title = Somthing;
    };
}]

Я не могу разобрать, пожалуйста, помогите мне ....

1 Ответ

0 голосов
/ 12 декабря 2018

Можно попробовать

let str = userInfo["gcm.notification.data"] as! String
let res = try? JSONDecoder().decode(Root.self,data:str.data(using:.utf8)!)
print(res?.data)

struct Root : Decodable {
    let data: DataClass
    let notificationType: String
}

struct DataClass : Decodable {
    let name, message, operation: String
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...