我正在使用 REST_controller 库在 CodeIgniter 中开发 Web 服务。它只是一个管理请求的控制器,我对我使用的每种方法都有一个请求。其中一种方法是我试图用它来发送苹果通知,所以我需要使用 ck.pem 文件(它是一个证书)。我知道问题是我没有 .pem 文件的好路径。
这是我正在使用的代码。我在控制器文件夹中有 ck.pem 文件,但它不起作用。
function pushtest_get(){
$data = array();
// Put your device token here (without spaces):
$deviceToken = 'be67171fb22f3ea8fa68c13a9f2ba7229caf3a487aa656b20f769fa2b1fa5b7a';
// Put your private key's passphrase here:
$passphrase = 'miguel';
$message = 'Notification de prueba desde servicio web rest';
////////////////////////////////////////////////////////////////////////////////
$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.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);
$data['response'] = '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)
$data['response'] = 'Message not delivered' . PHP_EOL;
else
$data['response'] = 'Message successfully delivered' . PHP_EOL;
// Close the connection to the server
fclose($fp);
$response->skills = $data;
$this->response($response, 200);
}