Apple Push Notification 不适用于非开发的临时构建

Posted

技术标签:

【中文标题】Apple Push Notification 不适用于非开发的临时构建【英文标题】:Apple Push Notification not working with ad-hoc build not on development 【发布时间】:2014-01-29 06:24:26 【问题描述】:

在开发模式下,我可以向设备发送推送通知,而在生产中我不能,我的设置是:

--> 我已经从配置门户下载了 aps_production.cer 证书,然后双击 aps_production.cer 安装的钥匙串访问最终从钥匙串访问中获取私钥,当时它询问密码我给了一些密码,例如“管理员” .

--> openssl pkcs12 -in CertificateName_pro.p12 -out CertificateName_pro.pem -nodes

--> 苹果服务器 apn: 'gateway.push.apple.com' 带有 2195 端口

-->问题是我的 Rails 应用程序发送通知并且没有收到任何错误,但设备上没有任何内容。

- (void)application:(UIApplication *)app didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken 
           NSString *deviceTokenStr = [[[[deviceToken description]
                                          stringByReplacingOccurrencesOfString: @"<" withString: @""]
                                         stringByReplacingOccurrencesOfString: @">" withString: @""]
                                        stringByReplacingOccurrencesOfString: @" " withString: @""];

    

simplepush.php

<?php

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

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

// Put your alert message here:
$message = 'You have a new issue of admin!';

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

$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'CertificateName_pro.pem');
stream_context_set_option($ctx, 'ssl', 'admin', $passphrase);

// Open a connection to the APNS server
$fp = stream_socket_client(
                           'ssl://gateway.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',
                     'badge'
                     );

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

在终端上运行时

Mac:test macmini$ php simplepush.php

连接到 APNS

消息成功发送

【问题讨论】:

【参考方案1】:

aware of the device token-ID,

这对于开发和生产环境是不同的。

    - (void)application:(UIApplication *)app didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken 
           NSString *deviceTokenStr = [[[[deviceToken description]
                                          stringByReplacingOccurrencesOfString: @"<" withString: @""]
                                         stringByReplacingOccurrencesOfString: @">" withString: @""]
                                        stringByReplacingOccurrencesOfString: @" " withString: @""];
           UIAlertView *alert= [[UIAlertView alloc]initWithTitle:deviceTokenStr message:Nil delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil];
            [alert show];
    

【讨论】:

如何为开发和生产获取不同的设备令牌ID? 这个设备令牌 id 用于生产,那么开发呢? 请看,token-id 与已根据环境性质(开发或生产)设置的应用不同。 如果你正在获取开发的token-id。那么该应用程序根本不是为生产环境构建的 天哪……我哭了,因为我不知道问题出在哪里……库马尔先生,你刚刚救了我的命。我爱你.. 请注意设备 ID 令牌,这对于开发和生产环境是不同的......太棒了..

以上是关于Apple Push Notification 不适用于非开发的临时构建的主要内容,如果未能解决你的问题,请参考以下文章

Apple Push Notification - 无法回调 didRegisterForRemoteNotificationsWithDeviceToken

Send push notification on Apple (APNS) on c#.net

Apple Push Notification Service 发送重复通知

Apple Push Notification Service 用户响应

Apple Push Notification 与生产服务 URL 上的开发证书一起使用

当用户拒绝初始提示时,Apple Push Notification 注册回调? [复制]