• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

php - Firebase Api Key 仅适用于 iOS

[复制链接]
菜鸟教程小白 发表于 2022-12-11 19:36:44 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我想在 php 中使用 firebase 发送推送通知。我的代码适用于 android,但不适用于 ios 设备。

我在这两种情况下都取得了成功:1。

这是我的代码

<?php 
$path_to_firebase_cm = 'https://fcm.googleapis.com/fcm/send';
$fields = array('registration_ids' => $token,
                        'data' =>  array('title'=>'Title',
                                         'body'=>$message['message'],
                                         'image'=>$imagepath,
                                         'priority'=>'high'
                                         )
                        );

        $headers = array(
            'Authorization:key=AIzaSyBiOCXbU7roG59_**********vWa4Xc' ,
            'Content-Type:application/json'
        );      
        $ch = curl_init();

        curl_setopt($ch, CURLOPT_URL, $path_to_firebase_cm); 
        curl_setopt($ch, CURLOPT_POST, true);
        curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

        curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));

        $result = curl_exec($ch);
        curl_close($ch);
        return $result;
?>

react 是

stdClass Object
(
    [multicast_id] => 8.5168949472892E+18
    [success] => 1
    [failure] => 0
    [canonical_ids] => 0
    [results] => Array
        (
            [0] => stdClass Object
                (
                    [message_id] => 0:1493801065120413%2d69fd2bf9fd7ecd
                )

        )

)



Best Answer-推荐答案


从 iphone 中删除应用程序并重新安装,之后您将获得新的 firebase token 尝试再次发送推送。 首先从 php 端调试它,他们正在发送更新的设备 token 上的推送。

关于php - Firebase Api Key 仅适用于 iOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43755402/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap