I am sending my app a silent remote notification.
This is my payload:
{"aps":{"content-available":1},"SUCCESS":"YES"}
I have set the "Required background modes" with:
"App downloads content from the network"
"App downloads content in response to push notifications"
And after a few minutes the method application:performFetchWithCompletionHandler is called but I can't find the data i'm sending in my payload.
Also, I figured the method application:didReceiveRemoteNotification:fetchCompletionHandler should be called as well but it isn't.
Can anyone help me with that?