我想准备使用APNS进行生产,我假设最好的(唯一的,最简单的?)方法是存储注册数据库中推送的设备ID(假设是SQL),然后使用PHP脚本(以某种方式?)将它发送给所有人(for loop?)而不是像我现在一样只发送一个(deviceToken
- 我的。)
这是我目前在AppDelegate.m中的内容:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Let the device know we want to receive push notifications
[[UIApplication sharedApplication] registerForRemoteNotificationTypes:
(UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert)];
return YES;
}
- (void)application:(UIApplication*)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData*)deviceToken
{
NSLog(@“Token: %@", deviceToken);
}
- (void)application:(UIApplication*)application didFailToRegisterForRemoteNotificationsWithError:(NSError*)error
{
NSLog(@"Failed to get token, error: %@", error);
}
所以这里我只是记录用户deviceToken,然后我手动将其复制并粘贴到我的PHP脚本中,如下所示:
<?php
// Put your device token here (without spaces):
$deviceToken = '[device token here]';
// Put your private key's passphrase here:
$passphrase = '[passphrase here]';
// Put your alert message here:
$message = 'Hello, there!';
////////////////////////////////////////////////////////////////////////////////
$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);
所以我需要帮助的是建立与我的服务器数据库(MySQL)的连接并存储deviceToken
。然后我需要循环PHP将通知发送到所有设备。
如果我需要澄清任何事情,请告诉我。
谢谢。
答案 0 :(得分:0)
要在MySQL数据库中存储设备令牌,您必须创建一个单独的API。
对于Ex。使用设备令牌调用http://example.com/saveDeviceToken。
在通知注册时(didRegisterForRemoteNotificationsWithDeviceToken),您必须使用参数作为设备令牌来调用此API。
在此API中,您可以获取设备令牌并将其保存到数据库中。 然后在上面的代码中,您只需从数据库中获取设备令牌。