极光推送苹果生产环境收不到推送信息

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/u010615629/article/details/81134147

        $response = $client->push()
            ->setPlatform(array('ios', 'android'))
            ->addAllAudience()
            ->androidNotification($title, array(
            'title' => $title,
            'extras' => array(
                'type' => 'reg'
            ),
        ))->iosNotification($title, array(
            'sound' => 'sound.caf',
        ))->options([
                'apns_production' => true
            ])->send();

核心代码:

'apns_production' => true

原理:切换到生产环境

https://docs.jiguang.cn/jpush/client/iOS/ios_faq/

猜你喜欢

转载自blog.csdn.net/u010615629/article/details/81134147
今日推荐