2

どこに問題があるのか​​ 本当にわかりません。ライブラリ ApnsPHP を使用してプッシュ通知を送信しています。他のスクリプトも試しましたが、それも機能しません。

このチュートリアル (http://code.google.com/p/apns-php/wiki/CertificateCreation) でプッシュ証明書を生成し、それらを Apple 開発者の Web サイトにも配置します。sample_push.phpに入れたiphoneから正しいトークンを取得します

Mac OS Lion を搭載した Macbook Pro 13 インチ、Mid 2010 を持っています。

vojta:~/dev/www/application$ php sample_push.php 
Fri, 13 Apr 2012 16:23:24 +0200 ApnsPHP[6478]: INFO: Trying ssl://gateway.sandbox.push.apple.com:2195...
Fri, 13 Apr 2012 16:23:32 +0200 ApnsPHP[6478]: INFO: Connected to ssl://gateway.sandbox.push.apple.com:2195.
Fri, 13 Apr 2012 16:23:32 +0200 ApnsPHP[6478]: INFO: Sending messages queue, run #1: 1 message(s) left in queue.
Fri, 13 Apr 2012 16:23:32 +0200 ApnsPHP[6478]: STATUS: Sending message ID 1 [custom identifier: Message-Badge-3] (1/3): 109 bytes.
Fri, 13 Apr 2012 16:23:33 +0200 ApnsPHP[6478]: INFO: Disconnected.

「php sample_push.php」を実行すると、エラーは発生しませんが、iPhone にプッシュ通知が届きません。

ソース sample_push.php:

// Using Autoload all classes are loaded on-demand
require_once 'ApnsPHP/Autoload.php';

// Instanciate a new ApnsPHP_Push object
$push = new ApnsPHP_Push(
    ApnsPHP_Abstract::ENVIRONMENT_SANDBOX,
    'server_certificates_bundle_sandbox.pem'
);

// Set the Root Certificate Autority to verify the Apple remote peer
$push->setRootCertificationAuthority('entrust_root_certification_authority.pem');

// Connect to the Apple Push Notification Service
$push->connect();

// Instantiate a new Message with a single recipient

$message = new ApnsPHP_Message('xxxx'); // i put my token here

// Set a custom identifier. To get back this identifier use the getCustomIdentifier() method
// over a ApnsPHP_Message object retrieved with the getErrors() message.
$message->setCustomIdentifier("Message-Badge-3");

// Set badge icon to "3"
//$message->setBadge(3);

// Set a simple welcome text
$message->setText('Hello APNs-enabled device!');

// Play the default sound
$message->setSound();

// Set the expiry value to 30 seconds
$message->setExpiry(30);

// Add the message to the message queue
$push->add($message);

// Send all messages in the message queue
$push->send();

// Disconnect from the Apple Push Notification Service
$push->disconnect();

// Examine the error message container
$aErrorQueue = $push->getErrors();
if (!empty($aErrorQueue)) {
    var_dump($aErrorQueue);
}

私はまた、はるかに単純なスクリプトを試していました(これも機能しません)

// Put your device token here (without spaces):
$deviceToken = 'xxxxxxxxxxx';

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

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

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

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

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

私は本当に何をすべきかわかりません。誰か助けてください。

4

2 に答える 2

2

私はそれを解決しました。これは、XCodeがiOSチームプロビジョニングプロファイルを使用してアプリに署名したためです。このプロファイルを削除した後、プッシュ通知が機能し始めました。

于 2012-05-16T16:03:52.357 に答える
0

Apple にプッシュ通知を送信すると、ステータス コードが返されます。受信しているステータス コードは何ですか? 0が返ってきますか?

Status codes
0   No errors encountered
1   Processing error
2   Missing device token
3   Missing topic
4   Missing payload
5   Invalid token size
6   Invalid topic size
7   Invalid payload size
8   Invalid token
255 None (unknown)
于 2012-04-13T18:38:33.593 に答える