ios - 收不到推送通知 - ios

标签 ios objective-c nsnotification

在我的应用程序中,我试图接收推送通知,我创建了一个证书并将其转换为 .pem 文件以在终端中进行测试,并在我发送时将证书复制到服务器设备端未收到来自服务器的通知。 我的代码如下

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.


if ([application respondsToSelector:@selector(isRegisteredForRemoteNotifications)])
{
    // iOS 8 Notifications
    [application registerUserNotificationSettings:[UIUserNotificationSettings settingsForTypes:(UIUserNotificationTypeSound | UIUserNotificationTypeAlert | UIUserNotificationTypeBadge) categories:nil]];

    [application registerForRemoteNotifications];
}
else
{
    // iOS < 8 Notifications
    [application registerForRemoteNotificationTypes:
     (UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeSound)];
}
}
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
{

NSString *str = [NSString stringWithFormat:@"%@",deviceToken];

NSString *newString = [str stringByReplacingOccurrencesOfString:@" " withString:@""];
newString = [newString stringByReplacingOccurrencesOfString:@"<" withString:@""];
newString = [newString stringByReplacingOccurrencesOfString:@">" withString:@""];


    NSData *postData = [[NSString stringWithFormat:@"regId=%@", newString] dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES];

    NSString *postLength = [NSString stringWithFormat:@"%d",[postData length]];

    NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease];
    [request setURL:[NSURL URLWithString:[NSString stringWithFormat:@"<myurl>"]]];

    [request setHTTPMethod:@"POST"];

    [request setValue:postLength forHTTPHeaderField:@"Content-Length"];

    [request setHTTPBody:postData];

    NSURLConnection *conn = [[NSURLConnection alloc]initWithRequest:request delegate:self];

}  }

服务器端代码

 $message = 'Hello';
$badge = 3;
$sound = 'default';
$development = true;

$payload = array();
$payload['aps'] = array('alert' => $message, 'badge' => intval($badge), 'sound' => $sound);
$payload = json_encode($payload);

$apns_url = NULL;
$apns_cert = NULL;
$apns_port = 2195;

if($development)
{
 $apns_url = 'gateway.sandbox.push.apple.com';
$apns_cert = '/path/to/cert/cert-dev.pem';
}
else
{
$apns_url = 'gateway.push.apple.com';
$apns_cert = '/path/to/cert/cert-prod.pem';
}

$stream_context = stream_context_create();
stream_context_set_option($stream_context, 'ssl', 'local_cert', $apns_cert);

$apns = stream_socket_client('ssl://' . $apns_url . ':' .    $apns_port, $error, $error_string, 2, STREAM_CLIENT_CONNECT, $stream_context);

//  You will need to put your device tokens into the $device_tokens array yourself
$device_tokens = array();

foreach($device_tokens as $device_token)
{
$apns_message = chr(0) . chr(0) . chr(32) . pack('H*', str_replace(' ', '', $device_token)) . chr(0) . chr(strlen($payload)) . $payload;
fwrite($apns, $apns_message);
}

@socket_close($apns);
@fclose($apns);

最佳答案

开发者帐户中可能存在一些证书问题,或者您的设备可能未添加到配置文件中。您可以通过重新创建配置文件来检查它。

关于ios - 收不到推送通知 - ios,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33540334/

相关文章:

ios - 测量在 iOS 中内嵌播放的嵌入式 YouTube 视频的音频电平

iphone - 取消引用空指针,但我没有使用指针

swift - 对于桥接的 Objective-C 方法,这个 Swift 名称宏中缺少什么?

iphone - 如何从另一个类访问 UISplitViewController 中的自定义 UIViewController

ios - NSNotification:尝试在其 View 不在窗口层次结构中的 ViewController 上显示 UIAlertController

objective-c - NSNotifications 与同一协议(protocol)的多个实例的委托(delegate)

ios - Circleci.yml 空依赖覆盖运行默认命令

ios - swift:如何从两个单独的方法执行相同的闭包

ios - objc_getAssociatedObject 返回 null

objective-c - NSNotification 是检测变化的正确选择吗?