Azure + Swift 推送通知
Azure + Swift Push Notifications
我正在尝试从远程服务器向应用程序发送一个非常简单的 PUSH。
我已按照 [1] 在 Azure 上设置了一个通知中心,但我无法将调试消息发送到设备。 我不想从数据库读取/写入 TABLE 使用移动服务
我在 Swift 中这样做,我在互联网上发现 nothing 实际上从服务器接收推送是 iOS swift 作为完整教程。
我不知道,比如swift下面的代码怎么写:
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
// TODO: update @"MobileServiceUrl" and @"AppKey" placeholders
MSClient *client = [MSClient clientWithApplicationURLString:@"MobileServiceUrl" applicationKey:@"AppKey"];
[client.push registerNativeWithDeviceToken:deviceToken tags:@[@"uniqueTag"] completion:^(NSError *error) {
if (error != nil) {
NSLog(@"Error registering for notifications: %@", error);
}
}];
}
到目前为止,这是我在 AppDelegate 中的代码(我从 [2] 获得的一些代码):
var client: MSClient?
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
if(UIApplication.instancesRespondToSelector(Selector("registerUserNotificationSettings:")))
{
application.registerUserNotificationSettings(UIUserNotificationSettings(forTypes: UIUserNotificationType.Sound | UIUserNotificationType.Alert | UIUserNotificationType.Badge, categories: nil))
}
/*else
{
//do ios7 stuff here. If you are using just local notifications then you dont need to do anything. for remote notifications:
application.registerForRemoteNotificationTypes(UIUserNotificationType.Sound | UIUserNotificationType.Alert | UIUserNotificationType.Badge)
}*/
self.client = MSClient(applicationURLString: "[url]", applicationKey: "[key]")
UIApplication.sharedApplication().registerForRemoteNotifications()
let settings = UIUserNotificationSettings(forTypes: .Alert, categories: nil)
UIApplication.sharedApplication().registerUserNotificationSettings(settings)
return true
}
func application(application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: NSData) {
println("Got device token \(deviceToken)");
//IS THIS EVEN CORRECT???? [3] and [4]
/*let json = ("{\"platform\":\"ios\", \"deviceToken\":\"\(deviceToken)\"}" as NSString).dataUsingEncoding(NSUTF8StringEncoding)
self.client?.invokeAPI("register_notifications", data: json, HTTPMethod: "POST", parameters: nil, headers: nil, completion:nil)*/
let registrationTags: [String] = ["tag"];
//EDIT 1 - I HAVE MADE A LITTLE PROGRESS
self.client?.push.registerNativeWithDeviceToken(deviceToken, tags: registrationTags, completion: { (error) -> Void in
println("Error registering")
})
}
func application(application: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: NSError) {
println("Could not register \(error)");
}
func application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject]) {
println("Remote notification received!")
println("Awesome!")
}
我正在取回设备令牌,这意味着我应该注册,但我不知道如何正确实施 [code]
self.client?.push.registerNativeWithDeviceToken(deviceToken: deviceToken, tags: registrationTags, completion: [code])
编辑 1 我在这里取得了一些进展:
self.client?.push.registerNativeWithDeviceToken(deviceToken, tags: registrationTags, completion: { (error) -> Void in
println("Error registering")
})
现在我在注册时遇到错误:
Error Domain=com.Microsoft.WindowsAzureMobileServices.ErrorDomain Code=-1302 "Error: Internal Server Error" UserInfo=0x14d97b10 {NSLocalizedDescription=Error: Internal Server Error, com.Microsoft.WindowsAzureMobileServices.ErrorResponseKey= { URL: https://[servicename].azure-mobile.net/push/registrations%3FdeviceId=[longnumber]&platform=apns } { status code: 500, headers {
"Cache-Control" = "no-cache";
"Content-Length" = 51;
"Content-Type" = "application/json";
Date = "Thu, 05 Mar 2015 08:52:10 GMT";
Server = "Microsoft-IIS/8.0";
"Set-Cookie" = "ARRAffinity=[somehash];Path=/;Domain=[servicename].azure-mobile.net";
"X-Powered-By" = "ASP.NET";
"x-zumo-version" = "Zumo.master.0.1.6.4217.Runtime";
} }, com.Microsoft.WindowsAzureMobileServices.ErrorRequestKey= { URL: https://[servicename].azure-mobile.net/push/registrations%3FdeviceId=[longnumber]&platform=apns }}
编辑 2
我在阅读[5]后现在做了以下修改:
func application(application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: NSData) {
let token = NSString(data: deviceToken, encoding: NSUTF8StringEncoding)
println("Got device token");
let hub = SBNotificationHub(connectionString: CONNECTIONSTRING, notificationHubPath: HUBPATH)
hub.registerNativeWithDeviceToken(deviceToken, tags: nil, completion: {(error) -> Void in
println("Error registering: \(error)")
})
}
我现在看到的输出是:
Got device token
Error registering: nil
我觉得我正在取得进步,但是当我从 Azure 发送调试推送时,我在日志中看不到任何内容(目前当我收到推送时,我只打印一条消息)
参考文献:
[1] http://azure.microsoft.com/en-us/documentation/articles/notification-hubs-ios-get-started/
[2] Registering for iOS 7 notifications in swift
[3] https://github.com/Azure/azure-content/blob/master/articles/notification-hubs-ios-mobile-services-register-user-push-notifications.md
[4] http://azure.microsoft.com/en-us/documentation/articles/notification-hubs-ios-mobile-services-register-user-push-notifications/
[5] http://azure.microsoft.com/en-us/documentation/articles/notification-hubs-ios-get-started/
这个对我有用。希望这可能有所帮助。
var client: MSClient?
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
#if !TARGET_IPHONE_SIMULATOR
let notiType:UIUserNotificationType = .Alert | .Badge | .Sound
let settings = UIUserNotificationSettings(forTypes: notiType, categories: nil)
UIApplication.sharedApplication().registerUserNotificationSettings(settings)
UIApplication.sharedApplication().registerForRemoteNotifications()
#endif
self.client = MSClient(applicationURLString:"https://yourAppName.azure-mobile.net/", applicationKey:"yourApplicationKey")
return true
}
func application(application: UIApplication!, didFailToRegisterForRemoteNotificationsWithError error: NSError!) {
println("Failed to register with error: \(error)");
}
func application(application: UIApplication!, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: NSData!) {
let hub = SBNotificationHub(connectionString:"yourConnectionString", notificationHubPath:"yourAppName")
hub.registerNativeWithDeviceToken(deviceToken, tags:nil, completion: { (error) in
if (error != nil) {
println("Error registering for notification: \(error)")
}
})
}
func application(application: UIApplication!, didReceiveRemoteNotification userInfo:[NSObject : AnyObject]?, fetchCompletionHandler:()) {
println("Recived: \(userInfo)")
NSNotificationCenter.defaultCenter().postNotificationName("ReceivedNotification", object:userInfo)
}
这对我来说效果很好:
let client: MSClient = MSClient(applicationURLString: "https://yoururl.azure-mobile.net/", applicationKey: "yourApplicationKey")
client.push.registerNativeWithDeviceToken(deviceToken, tags: nil, completion: {(error) -> Void in
if error != nil{
NSLog("Error registering for notifications: %@", error)
}
})
我正在尝试从远程服务器向应用程序发送一个非常简单的 PUSH。
我已按照 [1] 在 Azure 上设置了一个通知中心,但我无法将调试消息发送到设备。 我不想从数据库读取/写入 TABLE 使用移动服务
我在 Swift 中这样做,我在互联网上发现 nothing 实际上从服务器接收推送是 iOS swift 作为完整教程。
我不知道,比如swift下面的代码怎么写:
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
// TODO: update @"MobileServiceUrl" and @"AppKey" placeholders
MSClient *client = [MSClient clientWithApplicationURLString:@"MobileServiceUrl" applicationKey:@"AppKey"];
[client.push registerNativeWithDeviceToken:deviceToken tags:@[@"uniqueTag"] completion:^(NSError *error) {
if (error != nil) {
NSLog(@"Error registering for notifications: %@", error);
}
}];
}
到目前为止,这是我在 AppDelegate 中的代码(我从 [2] 获得的一些代码):
var client: MSClient?
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
if(UIApplication.instancesRespondToSelector(Selector("registerUserNotificationSettings:")))
{
application.registerUserNotificationSettings(UIUserNotificationSettings(forTypes: UIUserNotificationType.Sound | UIUserNotificationType.Alert | UIUserNotificationType.Badge, categories: nil))
}
/*else
{
//do ios7 stuff here. If you are using just local notifications then you dont need to do anything. for remote notifications:
application.registerForRemoteNotificationTypes(UIUserNotificationType.Sound | UIUserNotificationType.Alert | UIUserNotificationType.Badge)
}*/
self.client = MSClient(applicationURLString: "[url]", applicationKey: "[key]")
UIApplication.sharedApplication().registerForRemoteNotifications()
let settings = UIUserNotificationSettings(forTypes: .Alert, categories: nil)
UIApplication.sharedApplication().registerUserNotificationSettings(settings)
return true
}
func application(application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: NSData) {
println("Got device token \(deviceToken)");
//IS THIS EVEN CORRECT???? [3] and [4]
/*let json = ("{\"platform\":\"ios\", \"deviceToken\":\"\(deviceToken)\"}" as NSString).dataUsingEncoding(NSUTF8StringEncoding)
self.client?.invokeAPI("register_notifications", data: json, HTTPMethod: "POST", parameters: nil, headers: nil, completion:nil)*/
let registrationTags: [String] = ["tag"];
//EDIT 1 - I HAVE MADE A LITTLE PROGRESS
self.client?.push.registerNativeWithDeviceToken(deviceToken, tags: registrationTags, completion: { (error) -> Void in
println("Error registering")
})
}
func application(application: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: NSError) {
println("Could not register \(error)");
}
func application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject]) {
println("Remote notification received!")
println("Awesome!")
}
我正在取回设备令牌,这意味着我应该注册,但我不知道如何正确实施 [code]
self.client?.push.registerNativeWithDeviceToken(deviceToken: deviceToken, tags: registrationTags, completion: [code])
编辑 1 我在这里取得了一些进展:
self.client?.push.registerNativeWithDeviceToken(deviceToken, tags: registrationTags, completion: { (error) -> Void in
println("Error registering")
})
现在我在注册时遇到错误:
Error Domain=com.Microsoft.WindowsAzureMobileServices.ErrorDomain Code=-1302 "Error: Internal Server Error" UserInfo=0x14d97b10 {NSLocalizedDescription=Error: Internal Server Error, com.Microsoft.WindowsAzureMobileServices.ErrorResponseKey= { URL: https://[servicename].azure-mobile.net/push/registrations%3FdeviceId=[longnumber]&platform=apns } { status code: 500, headers { "Cache-Control" = "no-cache"; "Content-Length" = 51; "Content-Type" = "application/json"; Date = "Thu, 05 Mar 2015 08:52:10 GMT"; Server = "Microsoft-IIS/8.0"; "Set-Cookie" = "ARRAffinity=[somehash];Path=/;Domain=[servicename].azure-mobile.net"; "X-Powered-By" = "ASP.NET"; "x-zumo-version" = "Zumo.master.0.1.6.4217.Runtime"; } }, com.Microsoft.WindowsAzureMobileServices.ErrorRequestKey= { URL: https://[servicename].azure-mobile.net/push/registrations%3FdeviceId=[longnumber]&platform=apns }}
编辑 2
我在阅读[5]后现在做了以下修改:
func application(application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: NSData) {
let token = NSString(data: deviceToken, encoding: NSUTF8StringEncoding)
println("Got device token");
let hub = SBNotificationHub(connectionString: CONNECTIONSTRING, notificationHubPath: HUBPATH)
hub.registerNativeWithDeviceToken(deviceToken, tags: nil, completion: {(error) -> Void in
println("Error registering: \(error)")
})
}
我现在看到的输出是:
Got device token
Error registering: nil
我觉得我正在取得进步,但是当我从 Azure 发送调试推送时,我在日志中看不到任何内容(目前当我收到推送时,我只打印一条消息)
参考文献:
[1] http://azure.microsoft.com/en-us/documentation/articles/notification-hubs-ios-get-started/
[2] Registering for iOS 7 notifications in swift
[3] https://github.com/Azure/azure-content/blob/master/articles/notification-hubs-ios-mobile-services-register-user-push-notifications.md
[4] http://azure.microsoft.com/en-us/documentation/articles/notification-hubs-ios-mobile-services-register-user-push-notifications/
[5] http://azure.microsoft.com/en-us/documentation/articles/notification-hubs-ios-get-started/
这个对我有用。希望这可能有所帮助。
var client: MSClient?
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
#if !TARGET_IPHONE_SIMULATOR
let notiType:UIUserNotificationType = .Alert | .Badge | .Sound
let settings = UIUserNotificationSettings(forTypes: notiType, categories: nil)
UIApplication.sharedApplication().registerUserNotificationSettings(settings)
UIApplication.sharedApplication().registerForRemoteNotifications()
#endif
self.client = MSClient(applicationURLString:"https://yourAppName.azure-mobile.net/", applicationKey:"yourApplicationKey")
return true
}
func application(application: UIApplication!, didFailToRegisterForRemoteNotificationsWithError error: NSError!) {
println("Failed to register with error: \(error)");
}
func application(application: UIApplication!, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: NSData!) {
let hub = SBNotificationHub(connectionString:"yourConnectionString", notificationHubPath:"yourAppName")
hub.registerNativeWithDeviceToken(deviceToken, tags:nil, completion: { (error) in
if (error != nil) {
println("Error registering for notification: \(error)")
}
})
}
func application(application: UIApplication!, didReceiveRemoteNotification userInfo:[NSObject : AnyObject]?, fetchCompletionHandler:()) {
println("Recived: \(userInfo)")
NSNotificationCenter.defaultCenter().postNotificationName("ReceivedNotification", object:userInfo)
}
这对我来说效果很好:
let client: MSClient = MSClient(applicationURLString: "https://yoururl.azure-mobile.net/", applicationKey: "yourApplicationKey")
client.push.registerNativeWithDeviceToken(deviceToken, tags: nil, completion: {(error) -> Void in
if error != nil{
NSLog("Error registering for notifications: %@", error)
}
})