通过解析将推送通知发送到您的 iphone 作为测试

Send push notification via parse to your iphone as a test

我在我的项目中实现了解析推送通知,并使用测试代码对其进行了测试。在 viewController 中:

var push = PFPush()
       push.setMessage("This is a test")
        push.sendPushInBackgroundWithBlock({
            (isSuccesful: Bool!, error: NSError!) -> Void in

            println(isSuccesful)

        })

在 appDelegate 中:

func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
    // Here is the code for parse Push notifications. 
    Parse.setApplicationId("oIqRHQ8SBqLiuFzU5fIXRKgMVTHrH4ft6Gat7BW7", clientKey: "zPJ5SpDRFg9IqgiWZmW0N3FumzEwSDK1YvPxsipl")
    var pushSettings: UIUserNotificationSettings = UIUserNotificationSettings(forTypes: .Alert, categories: nil)
    application.registerUserNotificationSettings(pushSettings)
    application.registerForRemoteNotifications()


    // Override point for customization after application launch.
    return true
}

func application(application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: NSData) {
    println("succesful")
}

func application(application: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: NSError) {
    println("failed :(")
}

当我启动应用程序时,它打印成功且正确。此外,在 parse.com 网站上,我可以看到通知已发送。但是,为什么我不能使用解析网站向我的 phone 发送通知?当我尝试这样做时,它说没有已注册的设备。但我确实注册了我的设备(使用 .p12 证书)。

有什么办法可以解决这个问题?

我猜您忘记了在解析时保存用于安装的 deviceToken。试试这个:

func application(application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: NSData) {        
    PFInstallation.currentInstallation().setDeviceTokenFromData(deviceToken)
    PFInstallation.currentInstallation().saveInBackgroundWithBlock() { (success, error) in
        if error != nil {
            println("Saving failed")
        }

        if success {
            println("Saved the new device push token to parse successfully")
        }
    }
}