0
我的應用程序中有一個非常奇怪的行爲。 只會發送第一個推送通知發送。 其他所有不會到達。我等了一週,仍然沒有交付。 但是,如果我重新安裝應用程序,第一個通知將立即交付。APNS:第一次推送只提供
我從來沒有遇到過這個問題。所有其他應用程序正在與APNS合作。
謝謝,
MAIK
編輯:
<?php
// Put your device token here (without spaces):
$deviceToken = 'token';
// Put your private key's passphrase here:
$passphrase = 'pw';
// Put your alert message here:
$message = 'message';
////////////////////////////////////////////////////////////////////////////////
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'ck.pem');
stream_context_set_option($ctx, 'ssl', 'passphrase', $passphrase);
// Open a connection to the APNS server
$fp = stream_socket_client(
'ssl://gateway.push.apple.com:2195', $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;
// Create the payload body
$body['aps'] = array(
'alert' => $message,
'sound' => 'default'
);
// Encode the payload as JSON
$payload = json_encode($body);
// Build the binary notification
$msg = chr(0) . pack('n', 32) . pack('H*', $deviceToken) . pack('n', strlen($payload)) . $payload;
// Send it to the server
$result = fwrite($fp, $msg, strlen($msg));
if (!$result)
echo 'Message not delivered' . PHP_EOL;
else
echo 'Message successfully delivered' . PHP_EOL;
// Close the connection to the server
fclose($fp);
(我測試發展和生產推)
你能分享一下你用來發送推送通知的代碼嗎? –
更新了帖子 – Maik639
修復了它,創建了一個新的應用程序ID。認爲問題在於,我從舊帳戶中刪除了appId並在新的開發者帳戶上創建了它。 – Maik639