栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

使用PHP通过APN发送iOS推送通知

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

使用PHP通过APN发送iOS推送通知

尝试使用此php脚本,确保.pem证书在运行时以与该php脚本相同的路径退出,并获得正确的设备令牌

 <?php                $apnsServer = 'ssl://gateway.sandbox.push.apple.com:2195';                $privateKeyPassword = '1234';                $message = 'Welcome to iOS 7 Push Notifications';                $deviceToken =        '05924634A8EB6B84437A1E8CE02E6BE6683DEC83FB38680A7DFD6A04C6CC586E';                $pushCertAndKeyPemFile = 'PushCertificateAndKey.pem';        $stream = stream_context_create();        stream_context_set_option($stream,        'ssl',        'passphrase',        $privateKeyPassword);        stream_context_set_option($stream,        'ssl',        'local_cert',        $pushCertAndKeyPemFile);        $connectionTimeout = 20;        $connectionType = STREAM_CLIENT_ConNECT | STREAM_CLIENT_PERSISTENT;        $connection = stream_socket_client($apnsServer,        $errorNumber,        $errorString,        $connectionTimeout,        $connectionType,        $stream);        if (!$connection){        echo "Failed to connect to the APNS server. Error no = $errorNumber<br/>";        exit;        } else {        echo "Successfully connected to the APNS. Processing...</br>";        }        $messageBody['aps'] = array('alert' => $message,        'sound' => 'default',        'badge' => 2,        );        $payload = json_enpre($messageBody);        $notification = chr(0) .        pack('n', 32) .        pack('H*', $deviceToken) .        pack('n', strlen($payload)) .        $payload;        $wroteSuccessfully = fwrite($connection, $notification, strlen($notification));        if (!$wroteSuccessfully){        echo "Could not send the message<br/>";        }        else {        echo "Successfully sent the message<br/>";        }        fclose($connection);  ?>


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/649756.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号