推送通知 iphone(我的设备没有收到通知)
Posted
技术标签:
【中文标题】推送通知 iphone(我的设备没有收到通知)【英文标题】:Push Notification iphone (my device not receive notification) 【发布时间】:2011-10-03 11:16:46 【问题描述】:我遇到的问题是我的 ios 设备没有收到任何推送通知。
目标-C
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
// Override point for customization after application launch.
[[UIApplication sharedApplication] registerForRemoteNotificationTypes:
(
UIRemoteNotificationTypeAlert |
UIRemoteNotificationTypeBadge |
UIRemoteNotificationTypeSound
)
];
[self.window makeKeyAndVisible];
return YES;
- (void)application:(UIApplication *)app didFailToRegisterForRemoteNotificationsWithError:(NSError *)err
NSString *str = [NSString stringWithFormat: @"Error: %@", err];
NSLog(str);
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo
UIAlertView *dataAlert = [[UIAlertView alloc] initWithTitle:@"Device Token"
message:@"data"
delegate:self
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[dataAlert show];
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
NSLog(@"APN device token: %@", deviceToken);
NSString *deviceTokenString = [NSString stringWithFormat:@"%@",deviceToken];
UIAlertView *deviceTokenAlert = [[UIAlertView alloc] initWithTitle:@"Device Token"
message:deviceTokenString
delegate:self
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[deviceTokenAlert show];
php
<?php
$deviceToken = "a448b8946a5de3801dc6a11862a5a0bf11f1adc16xxxxxxxxxxxx"; // masked for security reason
// Passphrase for the private key
$pass = 'molik';
// Get the parameters from http get or from command line
$message = $_GET['message'] or $message = $argv[1] or $message = 'Test Message';
//$badge = (int)$_GET['badge'] or $badge = (int)$argv[2] or $badge = 1;
$sound = $_GET['sound'] or $sound = $argv[3] or $sound = 'default';
// Construct the notification payload
$body = array();
$body['aps'] = array('alert' => $message);
if ($badge)
$body['aps']['badge'] = $badge;
if ($sound)
$body['aps']['sound'] = $sound;
/* End of Configurable Items */
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'ck.pem');
// assume the private key passphase was removed.
stream_context_set_option($ctx, 'ssl', 'passphrase', $pass);
// for production change the server to ssl://gateway.push.apple.com:219
$fp = stream_socket_client('ssl://gateway.sandbox.push.apple.com:2195', $err, $errstr, 60, STREAM_CLIENT_CONNECT, $ctx);
if (!$fp)
print "Failed to connect $err $errstr\n";
return;
else
print "Connection OK\n";
$payload = json_encode($body);
$msg = chr(0) . pack("n",32) . pack('H*', $deviceToken) . pack("n",strlen($payload)) . $payload;
print "sending message :" . $payload . "\n";
$result=fwrite($fp, $msg);
echo $result;
fclose($fp);
?>
当 PHP 代码运行时,它会显示输出:
Connection OK sending message :"aps":"alert":"Test Message","sound":"default"
但在设备端,没有收到任何通知。
【问题讨论】:
查看 ray wenderlich 推送通知教程,您将得到答案。抱歉,该网站没有从我的地方加载,否则我会给你链接。或者你也可以google一下。 启动您的应用程序时没有记录错误?另外,使用 APNS-PHP,在使用 PHP 发送推送通知时会更好:code.google.com/p/apns-php 你好 robinthanx 回复。我已经学习了本教程,但我不明白我的错误在哪里。一切正常,但 iphone 设备没有收到通知。 您是在创建 APNS 证书之前还是之后创建了配置文件?创建 APNS 证书后,您是否更新了个人资料?如果没有,请尝试一下。否则配置文件将不知道推送服务。另外,您是否在您的设备上收到“此应用程序想要发送推送通知”的问题? + 正如 Robin 所写:开始接受其他问题的答案!不好不接受! 下次请编辑您的问题,而不是将所有问题都放在 cmets 中。顺便说一句,前面提到的教程在raywenderlich.com/3443/… 【参考方案1】:我遇到了很多与公钥和私钥相关的问题。
最后我撤销了所有证书并点击下面的链接,然后我在设备中收到了推送通知。
你也可以在下面link找到php的示例代码。
【讨论】:
【参考方案2】:您的证书有问题。尝试创建新的应用程序 ID 并生成 development.cerand
production.cer`。之后生成配置文件。
【讨论】:
以上是关于推送通知 iphone(我的设备没有收到通知)的主要内容,如果未能解决你的问题,请参考以下文章
推送通知在 iphone 中没有收到来自 Parse.com 服务器的某些时间
推送通知不适用于 iPhone 所有设备 (Xcode8) 版本