IPhone で APNS を使用する方法と設定方法を示すサンプル プロジェクトはありますか? 私は現在ドキュメントを見ていますが、いくつかの作業コードを分解して、すべてがどのように連携するかを確認できるとよいでしょうか?
Google や iPhone デベロッパー センターを使用しても何も見つからないようです。
IPhone で APNS を使用する方法と設定方法を示すサンプル プロジェクトはありますか? 私は現在ドキュメントを見ていますが、いくつかの作業コードを分解して、すべてがどのように連携するかを確認できるとよいでしょうか?
Google や iPhone デベロッパー センターを使用しても何も見つからないようです。
プッシュ通知サービスの設定で最悪なのはプロビジョニングです。私が遭遇した主な障害は、Apple のサイトからダウンロードした .cer ファイルに証明書とキーが含まれていることでした。通知を送信するシステム サービスを C# で記述しましたが、証明書をエクスポートしたために接続が失敗し続けました。鍵ではありません。
誰が最初にこれを書いたかは覚えていません。これは、通知サービスを最初にテストしたときに助けてくれた Python のコードです。非常にシンプルで、テスト中にうまく機能するので気に入っています。
import socket, ssl, json, struct
# device token returned when the iPhone application
# registers to receive alerts
deviceToken = 'XXXXXXXX XXXXXXXX XXXXXXXX XXXXXXXX XXXXXXXX XXXXXXXX XXXXXXXX XXXXXXXX'
thePayLoad = {
'aps': {
'alert':'Oh no! Server\'s Down!',
'sound':'k1DiveAlarm.caf',
'badge':42,
},
'test_data': { 'foo': 'bar' },
}
# Certificate issued by apple and converted to .pem format with openSSL
# Per Apple's Push Notification Guide (end of chapter 3), first export the cert in p12 format
# openssl pkcs12 -in cert.p12 -out cert.pem -nodes
# when prompted "Enter Import Password:" hit return
#
theCertfile = 'cert.pem'
#
theHost = ( 'gateway.sandbox.push.apple.com', 2195 )
#
data = json.dumps( thePayLoad )
# Clear out spaces in the device token and convert to hex
deviceToken = deviceToken.replace(' ','')
byteToken = bytes.fromhex( deviceToken ) # Python 3
# byteToken = deviceToken.decode('hex') # Python 2
theFormat = '!BH32sH%ds' % len(data)
theNotification = struct.pack( theFormat, 0, 32, byteToken, len(data), data )
# Create our connection using the certfile saved locally
ssl_sock = ssl.wrap_socket( socket.socket( socket.AF_INET, socket.SOCK_STREAM ), certfile = theCertfile )
ssl_sock.connect( theHost )
# Write out our data
ssl_sock.write( theNotification )
# Close the connection -- apple would prefer that we keep
# a connection open and push data as needed.
ssl_sock.close()
また、apn_on_rails という Rails gem もあり、これは Rails アプリケーションを開発している場合にうまく機能するようです。今日見たところ、コンソールから通知を送信することができました。
iPhone 側では、次のように呼び出して、すべての種類の通知を登録するだけです。
[[UIApplication sharedApplication] registerForRemoteNotificationTypes: UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert];
デバイス トークンを受け取るには、次のデリゲート メソッドを実装する必要があります。
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
- (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error
テスト中は、NSLog を使用して deviceToken をコンソールにキックし、それを上記の python スクリプトに貼り付けることができます。本番環境では、サーバーにトークンを取得する方法を明らかに設定する必要があります。
また、本番環境では、Apple のフィードバック サービスに問い合わせて、アプリを削除したユーザーからデバイス トークンを削除する必要があります。
それが役立つ場合に備えて、サーバー側でプッシュ通知サービスと対話するための Python ライブラリ PyAPNs を作成しました。
これは、PHP を使用して Linux サーバーでプロバイダー側のコードを作成するのに大いに役立ちました。
これは非常に古い質問であり、多くの回答が寄せられていることは承知していますが、Rey Wenderlichのチュートリアルが非常に役立つことがわかり、APNS の初心者向けに共有したいと思いました。それは非常に便利で、非常に理解しやすいです。
遅くなりましたが、MonoPushプロジェクトが表示されます。それらは、マップ上の統計を含む詳細な統計だけでなく、プッシュ統合の新しい方法を提供するようです。
これは、jessecurry のテスト スクリプトのテスト済みの php5 バージョンです。「拡張メッセージ形式」を使用し、Apple からのエラーをキャッチして表示しようとします。これにより、メッセージの何が問題なのかがわかります。
// Settings
$deviceToken = 'xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx';
$apnsCert = 'apns-dev.pem';
$apnsHost = 'gateway.sandbox.push.apple.com';
$apnsPort = 2195;
// Prepare payload
$payload =
array(
'aps' => array(
'alert' => 'Hi, this is an alert!',
'badge' => 8
)
);
$payload = json_encode($payload);
print($payload . "\n");
// Connect to Apple Push Notification server
$streamContext = stream_context_create();
stream_context_set_option($streamContext, 'ssl', 'local_cert', $apnsCert);
$apns = stream_socket_client('ssl://' . $apnsHost . ':' . $apnsPort, $error, $errorString, 2, STREAM_CLIENT_CONNECT, $streamContext);
if (!$apns) {
die('Error creating ssl socket');
}
// Don't block on reading from the socket
stream_set_blocking ($apns, 0);
// Send payload in enhanced message format ( http://developer.apple.com/library/ios/#documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/CommunicatingWIthAPS/CommunicatingWIthAPS.html#//apple_ref/doc/uid/TP40008194-CH101-SW1 )
$apnsMessage =
// Command "1"
chr(1)
// Identifier "88"
. pack('N', 88)
// Expiry "tomorrow"
. pack('N', time() + 86400)
// Token length
. chr(0) . chr(32)
// Device token
. pack('H*', str_replace(' ', '', $deviceToken))
// Payload length
. chr(0) . chr(strlen($payload))
// Actual payload
. $payload . $payload;
fwrite($apns, $apnsMessage);
// Pause for half a second to check if there were any errors during the last seconds of sending.
usleep(500000);
checkAppleErrorResponse($apns);
// Close connection -- apple would prefer that we keep
// a connection open and push data as needed.
fclose($apns);
function checkAppleErrorResponse($apns)
{
$responseBinary = fread($apns, 6);
if ($responseBinary !== false && strlen($responseBinary) == 6)
{
print(
"\n"
.'Error message recieved from Apple.'."\n"
.'For the meaning, refer to: "Provider Communication with Apple Push Notification Service"'."\n"
);
$response = unpack('Ccommand/Cstatus_code/Nidentifier', $responseBinary);
var_dump($response);
}
}
GitHubでNWPusherプロジェクトを試してください。プッシュ通知を手動で送信するための OS X および iOS アプリを提供するか、付属の Objective-C ライブラリを直接使用することができます。