更新Passbook钱包无法连接

时间:2016-01-14 08:18:31

标签: php apple-push-notifications passbook passkit

我发现更新钱包推送通知,我使用了以下代码,服务器没有连接错误。

我错过了任何凭据。请帮助我,解决此问题。

我注册了我的存折,然后回到了服务器上。

此密钥与存折生成证书密钥相同。

            $certifile = 'passbook/certificates/AppleWWDRCA.pem'; 
            $passphrase = 'xxxxxxxx';
            $trust ='';
            $url = 'ssl://gateway.push.apple.com:2195';
            $ctx = stream_context_create();
            stream_context_set_option($ctx, 'ssl', 'local_cert', $certifile);
            stream_context_set_option($ctx, 'ssl', 'passphrase', $passphrase);
            $fp = stream_socket_client($url, $err, $errstr, 60, STREAM_CLIENT_CONNECT | STREAM_CLIENT_PERSISTENT, $ctx);

            if (!$fp)
                exit("Failed to connect: $err $errstr" . PHP_EOL);
            echo 'Connected to APNS' . PHP_EOL;
            $body['aps'] = array(
                'alert' => $message,
                'sound' => 'default',
                'pushToken'=>'xxxxxxxxxxxxxx',
                 'passTypeId'=>'xxxxxxxxx'

            );

            $payload = json_encode($body);

            $msg = chr(0) . pack('n', 32) . pack('H*', $deviceToken) . pack('n', strlen($payload)) . $payload;

            $result = fwrite($fp, $msg, strlen($msg));

        // Close the connection to the server
                fclose($fp);

请帮帮我。

连接到服务器。但是我发送推送通知时出错。

$body['aps'] = array( );
$msg = chr(0) . pack('n', 32) . pack('H*', $pushToken) . pack('n', strlen($payload)) . $payload;

if (!$result)
            echo 'Message not delivered' . PHP_EOL;
        else
            echo 'Message successfully delivered' . PHP_EOL;

消息未送达:10053。

用户预订时间动态传递创建并显示到设备。

如果用户修改预订日期。我需要动态更新预订日期和时间,以便用户通过推送通过。

任何人请帮我更新我的存折。

1 个答案:

答案 0 :(得分:0)

在这里查看PHP代码(第一个答案)。它对我有用。 PHP Apple Enhanced Push Notification read error response

您使用了错误的认证。您必须通过从钥匙串导出来通过认证(p12)制作pem文件。

如何从cer文件制作P12和PEM文件
1.进入保存文件夹
2.打开终端并cd到该文件夹​​
openssl x509 -inform der -in aps_development.cer -out certificate.pem
openssl pkcs12 -nocerts -in Certiticates.p12 -out p12Certificates.pem
[输入.p12的密码和.pem的密码]
cat certificate.pem p12Certificates.pem> apns_cert.pem