菜鸟教程小白 发表于 2022-12-13 09:21:04

php - iOS推送通知无法使用PHP


                                            <p><p>我正在尝试使用 APNS 库在 PHP 中的 iOS 中实现推送通知。这是我的代码:</p>

<pre><code>&lt;?php

// Put your device token here (without spaces):   
$deviceToken = &#39;XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX&#39;;   

// Put your private key&#39;s passphrase here:
$passphrase = &#39;XXXXXX&#39;;

// Put your alert message here:
$message = &#39;My first push notification!&#39;;

////////////////////////////////////////////////////////////////////////////////

$ctx = stream_context_create();
stream_context_set_option($ctx, &#39;ssl&#39;, &#39;local_cert&#39;, &#39;Certificates.pem&#39;);
stream_context_set_option($ctx, &#39;ssl&#39;, &#39;passphrase&#39;, $passphrase);

// Open a connection to the APNS server
$fp = stream_socket_client(
    &#39;ssl://gateway.sandbox.push.apple.com:2195&#39;, $err,
    $errstr, 60, STREAM_CLIENT_CONNECT|STREAM_CLIENT_PERSISTENT, $ctx);

if (!$fp)
    exit(&#34;Failed to connect: $err $errstr&#34; . PHP_EOL);

echo &#39;Connected to APNS&#39; . PHP_EOL;

// Create the payload body
$body[&#39;aps&#39;] = array(
    &#39;alert&#39; =&gt; $message,
    &#39;sound&#39; =&gt; &#39;default&#39;
    );

// Encode the payload as JSON
$payload = json_encode($body);

// Build the binary notification
$msg = chr(0) . pack(&#39;n&#39;, 32) . pack(&#39;H*&#39;, $deviceToken) . pack(&#39;n&#39;, strlen($payload)) . $payload;

// Send it to the server
$result = fwrite($fp, $msg, strlen($msg));print_r($result);

if (!$result)
    echo &#39;Message not delivered&#39; . PHP_EOL;
else
    echo &#39;Message successfully delivered&#39; . PHP_EOL;

// Close the connection to the server
fclose($fp);
?&gt;
</code></pre>

<p>它显示消息发送成功,但在 iOS 中它不显示通知。</p>

<pre><code>2015-07-28 08:32:39 Connected to APNS result = 97
2015-07-28 08:32:39 Message successfully delivered
2015-07-28 08:32:39 Connection closed to APNS
</code></pre>

<p>为什么会这样?我错过了什么吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>他的错误在于 ios 9,如果停止使用 objective-c中的代码并在 swift 中使用,因为它在生成目标 token- C for ios9 时存在错误。
我建议紧急更改您的代码。
同样通过这个想法,当预定的 ios 更改为 swift 时,服务器也得到了解决,我的 php 几乎相等。
护理:</p>

<pre><code>            $ msg = chr (0). pack (&#39;N&#39;, 32). pack (H * &#39;,&#39;. &#39;$deviceToken .&#39;). pack (&#39;N&#39;, strlen ($ payload)). $ payload;   
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于php - iOS推送通知无法使用PHP,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/31668984/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/31668984/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: php - iOS推送通知无法使用PHP