4

我一直在研究基于 VOIP 的应用程序。部署目标是 8.0。
我已经使用了PUSHKitVOIP 推送通知的框架。我的应用程序在后台运行,并依靠 VOIP 推送来进行聊天和呼叫通知。

该服务器基于 node.js 并使用以下内容进行 VOIP 推送。 https://www.npmjs.com/package/apn-test

大多数情况下,当 iOS 应用程序处于后台时,它要么延迟接收到 VOIP 推送,要么错过了 VOIP 推送。服务端报VOIP APN发送成功。
我无法确定问题出在哪里。如果有人遇到类似问题或有任何想法,请提供帮助。

注意:VoIP 推送被视为高优先级通知,并且会立即发送。

任何帮助表示赞赏。

4

2 回答 2

0

确保设置优先级。

https://github.com/node-apn/node-apn/blob/master/doc/notification.markdown#notificationpriority

于 2016-10-03T09:17:16.797 回答
0

使用这个 simplepush.php 文件

<?php

// Put your device token here (without spaces):


      $deviceToken = '1234567890123456789';
//


// Put your private key's passphrase here:
$passphrase = 'ProjectName';

// Put your alert message here:
$message = 'My first push notification!';



$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'PemFileName.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,
    'ssl://gateway.sandbox.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(
                     'content-available'=> 1,
                     'alert' => $message,
                     'sound' => 'default',
                     'badge' => 0,
                     );



// 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);

使用以下命令创建 pem 文件并在上面的代码中使用它

$ openssl x509 -in aps_development.cer -inform der -out PushCert.pem

# Convert .p12 to .pem. Enter your pass pharse which is the same pwd that you have given while creating the .p12 certificate. PEM pass phrase also same as .p12 cert.  
$ openssl pkcs12 -nocerts -out PushKey1.pem -in pushkey.p12

Enter Import Password:

MAC verified OK

Enter PEM pass phrase:

Verifying - Enter PEM pass phrase:

# To remove passpharse for the key to access globally. This only solved my stream_socket_client() & certificate capath warnings.
$ openssl rsa -in PushKey1.pem -out PushKey1_Rmv.pem

Enter pass phrase for PushChatKey1.pem:

writing RSA key

# To join the two .pem file into one file:
$ cat PushCert.pem PushKey1_Rmv.pem > ApnsDev.pem

之后转到 simplepush.php 位置并触发命令 -> php simplepush.php

通过这种方式,您可以测试您的推送工具包通知设置架构。

此设置和设置将帮助您了解证书是否正确创建和使用。如果证书创建和使用出现问题,则会显示通知已发送,但您永远不会在设备上收到。

在任何 php 或 .net 或其他代码中,永远不会确认通知在队列中或已被取消,它会始终显示通知已发送。

于 2016-10-04T12:30:19.400 回答