0

我已经尝试了很多教程来为我的应用程序发送推送通知服务。当我在设备上测试它时它可以工作。但是如果我在我的应用程序在 App Store 上启动后对其进行实时测试,并且我通过从商店下载将它安装在我的设备上,我运行 php 文件以发送推送通知,我没有收到它。这是代码我用于推送通知和我从中学到的教程。

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
// Override point for customization after application launch.
self.viewController = [[[ViewController alloc] initWithNibName:@"ViewController" bundle:nil] autorelease];
self.window.rootViewController = self.viewController;
[self.window makeKeyAndVisible];

[[UIApplication sharedApplication] registerForRemoteNotificationTypes:
 (UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert)];




return YES;
}


- (void)application:(UIApplication*)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData*)deviceToken
{
NSLog(@"My token is: %@", deviceToken);

}

- (void)application:(UIApplication*)application didFailToRegisterForRemoteNotificationsWithError:(NSError*)error
{
NSLog(@"Failed to get token, error: %@", error);
}

是否有任何教程可以教我实时使用它。我将我的 php 文件的环境从沙箱更改为实时。请指导。

4

2 回答 2

2

我自己解决了这个问题。

不在 Live 上工作的原因是因为

(void)application:(UIApplication*)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData*)deviceToken

在这种方法中,设备令牌没有正确注册到我的 php 服务器数据库中。以下代码将有助于在 php 服务器中注册设备令牌

- (void)application:(UIApplication*)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData*)deviceToken
{
NSLog(@"My token is: %@", deviceToken);

NSString* newToken = [deviceToken description];

newToken = [newToken stringByTrimmingCharactersInSet:[NSCharacterSet characterSetWithCharactersInString:@"<>"]];
newToken = [newToken stringByReplacingOccurrencesOfString:@" " withString:@""];

NSLog(@"%@",newToken);
NSString *urlString = [NSString stringWithFormat:@"http://sample.com/registerDevice.php?appId=xxx&deviceToken=%@",newToken];

NSURL *url = [[NSURL alloc] initWithString:urlString];

NSURLRequest *urlRequest = [NSURLRequest requestWithURL:url];

NSData *urlData;
NSURLResponse *response;
urlData = [NSURLConnection sendSynchronousRequest:urlRequest returningResponse:&response error:nil];
NSLog(@"data send");

}
于 2013-03-08T09:22:17.510 回答
1

首先,我不认为使用开发推送通知证书(或临时证书)安装应用程序、获取 deviceToken、安装应用商店应用程序并使用以前的设备令牌发送推送通知会起作用。

此链接确认:沙盒中的 iPhone APNS 设备令牌与生产

这可能解释了为什么您不能向您的应用程序发送推送通知。

此外,您需要将设备令牌发送到您的服务器,因为这是您的服务器了解所有设备令牌的唯一方法。

我建议您查看苹果文档

于 2012-08-13T12:34:17.487 回答