Recently the app can not receive notification, the android side works fine but the ios one has fail
so here is what I have attempt:
1) generate token
Make your Response as follow : if you're consuming from android use GCM or for ios use APNS_SANDBOX
$sns = AWS::createClient('sns');
$message = json_encode(['default' => '', 'APNS_SANDBOX' => json_encode($data), 'GCM' => json_encode(['data' => $data])]);
$sns->publish([
'TargetArn' => $arn,
'Message' => $message,
'MessageStructure' => 'json'
]);