I\'m developing an iOS app that should receive push notifications sent from the Firebase console. I\'m using Swift 3 and iOS 10.
As recommended by the Firebase docum
You should be able to retrieve the body using something like:
let body = remoteMessage.appData["notification"]!["body"] as! String print(body)