在iOS中未收到FCM主题消息

时间:2017-08-28 12:49:32

标签: php firebase push-notification firebase-authentication firebase-cloud-messaging

我正在使用FCM主题消息发送消息。在我更改主题名称之前,一切正常。   我正在使用主题" mytest" 。有一天,我将主题名称更改为" mytest-qa"。   ios和android应用程序都订阅了主题" mytest-qa"。但消息是在ios中收到的,但是进入了Android。   这是我的有效载荷。

                'to'      => $topic,
                'notification'  => $msg,
                "priority" => "high",
                "data" => array('screen_id' =>$id)

我使用curl发送通知,它给我messaged_id作为回复。

请告诉我如何解决此问题。

通过在邮件中添加标题解决了这个问题。

$msg = array
              (
                'body'  => $body.' ',
                'title' => $title,
                'icon'  => 'new'
            );

0 个答案:

没有答案