Registar o utilizador atual para notificações push com ASP.NET
Descrição Geral
Este tópico mostra-lhe como pedir o registo de notificação push com os Hubs de Notificação do Azure quando o registo é efetuado pela ASP.NET API Web. Este tópico expande o tutorial Notificar utilizadores com Hubs de Notificação. Tem de já ter concluído os passos necessários nesse tutorial para criar o serviço móvel autenticado. Para obter mais informações sobre o cenário de notificações dos utilizadores, consulte Notificar utilizadores com Hubs de Notificação.
Atualizar a sua aplicação
No seu MainStoryboard_iPhone.storyboard, adicione os seguintes componentes da biblioteca de objetos:
Etiqueta: "Enviar para o Utilizador com Hubs de Notificação"
Etiqueta: "InstallationId"
Etiqueta: "Utilizador"
Campo de Texto: "Utilizador"
Etiqueta: "Palavra-passe"
Campo de Texto: "Palavra-passe"
Botão: "Iniciar sessão"
Neste momento, o seu storyboard tem o seguinte aspeto:
No editor assistente, crie tomadas para todos os controlos comutados e chame-os, ligue os campos de texto ao Controlador de Vista (delegado) e crie uma Ação para o botão de início de sessão .
O ficheiro BreakingNewsViewController.h deve conter agora o seguinte código:
@property (weak, nonatomic) IBOutlet UILabel *installationId; @property (weak, nonatomic) IBOutlet UITextField *User; @property (weak, nonatomic) IBOutlet UITextField *Password; - (IBAction)login:(id)sender;
Crie uma classe com o nome
DeviceInfo
e copie o seguinte código para a secção interface do ficheiro DeviceInfo.h:@property (readonly, nonatomic) NSString* installationId; @property (nonatomic) NSData* deviceToken;
Copie o seguinte código na secção de implementação do ficheiro DeviceInfo.m:
@synthesize installationId = _installationId; - (id)init { if (!(self = [super init])) return nil; NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; _installationId = [defaults stringForKey:@"PushToUserInstallationId"]; if(!_installationId) { CFUUIDRef newUUID = CFUUIDCreate(kCFAllocatorDefault); _installationId = (__bridge_transfer NSString *)CFUUIDCreateString(kCFAllocatorDefault, newUUID); CFRelease(newUUID); //store the install ID so we don't generate a new one next time [defaults setObject:_installationId forKey:@"PushToUserInstallationId"]; [defaults synchronize]; } return self; } - (NSString*)getDeviceTokenInHex { const unsigned *tokenBytes = [[self deviceToken] bytes]; NSString *hexToken = [NSString stringWithFormat:@"%08X%08X%08X%08X%08X%08X%08X%08X", ntohl(tokenBytes[0]), ntohl(tokenBytes[1]), ntohl(tokenBytes[2]), ntohl(tokenBytes[3]), ntohl(tokenBytes[4]), ntohl(tokenBytes[5]), ntohl(tokenBytes[6]), ntohl(tokenBytes[7])]; return hexToken; }
Em PushToUserAppDelegate.h, adicione a seguinte propriedade singleton:
@property (strong, nonatomic) DeviceInfo* deviceInfo;
didFinishLaunchingWithOptions
No método em PushToUserAppDelegate.m, adicione o seguinte código:self.deviceInfo = [[DeviceInfo alloc] init]; [[UIApplication sharedApplication] registerForRemoteNotificationTypes: UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound];
A primeira linha inicializa o
DeviceInfo
singleton. A segunda linha inicia o registo de notificações push, que já estão presentes se já tiver concluído o tutorial Introdução aos Hubs de Notificação .Em PushToUserAppDelegate.m, implemente o método
didRegisterForRemoteNotificationsWithDeviceToken
na appDelegate e adicione o seguinte código:self.deviceInfo.deviceToken = deviceToken;
Isto define o token do dispositivo para o pedido.
Nota
Neste momento, não deve haver outro código neste método. Se já tiver uma chamada para o
registerNativeWithDeviceToken
método que foi adicionado quando concluiu o tutorial Enviar notificações push para aplicações iOS com os Hubs de Notificação do Azure , tem de comentar ou remover essa chamada.PushToUserAppDelegate.m
No ficheiro, adicione o seguinte método de processador:* (void) application:(UIApplication *) application didReceiveRemoteNotification:(NSDictionary *)userInfo { NSLog(@"%@", userInfo); UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Notification" message: [userInfo objectForKey:@"inAppMessage"] delegate:nil cancelButtonTitle: @"OK" otherButtonTitles:nil, nil]; [alert show]; }
Este método apresenta um alerta na IU quando a aplicação recebe notificações enquanto está em execução.
Abra o
PushToUserViewController.m
ficheiro e devolva o teclado na seguinte implementação:- (BOOL)textFieldShouldReturn:(UITextField *)theTextField { if (theTextField == self.User || theTextField == self.Password) { [theTextField resignFirstResponder]; } return YES; }
viewDidLoad
No método noPushToUserViewController.m
ficheiro, inicialize a etiqueta dainstallationId
seguinte forma:DeviceInfo* deviceInfo = [(PushToUserAppDelegate*)[[UIApplication sharedApplication]delegate] deviceInfo]; Self.installationId.text = deviceInfo.installationId;
Adicione as seguintes propriedades na interface em
PushToUserViewController.m
:@property (readonly) NSOperationQueue* downloadQueue; - (NSString*)base64forData:(NSData*)theData;
Em seguida, adicione a seguinte implementação:
- (NSOperationQueue *)downloadQueue { if (!_downloadQueue) { _downloadQueue = [[NSOperationQueue alloc] init]; _downloadQueue.name = @"Download Queue"; _downloadQueue.maxConcurrentOperationCount = 1; } return _downloadQueue; } // base64 encoding - (NSString*)base64forData:(NSData*)theData { const uint8_t* input = (const uint8_t*)[theData bytes]; NSInteger length = [theData length]; static char table[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="; NSMutableData* data = [NSMutableData dataWithLength:((length + 2) / 3) * 4]; uint8_t* output = (uint8_t*)data.mutableBytes; NSInteger i; for (i=0; i < length; i += 3) { NSInteger value = 0; NSInteger j; for (j = i; j < (i + 3); j++) { value <<= 8; if (j < length) { value |= (0xFF & input[j]); } } NSInteger theIndex = (i / 3) * 4; output[theIndex + 0] = table[(value >> 18) & 0x3F]; output[theIndex + 1] = table[(value >> 12) & 0x3F]; output[theIndex + 2] = (i + 1) < length ? table[(value >> 6) & 0x3F] : '='; output[theIndex + 3] = (i + 2) < length ? table[(value >> 0) & 0x3F] : '='; } return [[NSString alloc] initWithData:data encoding:NSASCIIStringEncoding]; }
Copie o seguinte código para o
login
método de processador criado pelo XCode:DeviceInfo* deviceInfo = [(PushToUserAppDelegate*)[[UIApplication sharedApplication]delegate] deviceInfo]; // build JSON NSString* json = [NSString stringWithFormat:@"{\"platform\":\"ios\", \"instId\":\"%@\", \"deviceToken\":\"%@\"}", deviceInfo.installationId, [deviceInfo getDeviceTokenInHex]]; // build auth string NSString* authString = [NSString stringWithFormat:@"%@:%@", self.User.text, self.Password.text]; NSMutableURLRequest* request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"http://nhnotifyuser.azurewebsites.net/api/register"]]; [request setHTTPMethod:@"POST"]; [request setHTTPBody:[json dataUsingEncoding:NSUTF8StringEncoding]]; [request addValue:[@([json lengthOfBytesUsingEncoding:NSUTF8StringEncoding]) description] forHTTPHeaderField:@"Content-Length"]; [request addValue:@"application/json" forHTTPHeaderField:@"Content-Type"]; [request addValue:[NSString stringWithFormat:@"Basic %@",[self base64forData:[authString dataUsingEncoding:NSUTF8StringEncoding]]] forHTTPHeaderField:@"Authorization"]; // connect with POST [NSURLConnection sendAsynchronousRequest:request queue:[self downloadQueue] completionHandler:^(NSURLResponse* response, NSData* data, NSError* error) { // add UIAlert depending on response. if (error != nil) { NSHTTPURLResponse* httpResponse = (NSHTTPURLResponse*)response; if ([httpResponse statusCode] == 200) { UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Back-end registration" message:@"Registration successful" delegate:nil cancelButtonTitle: @"OK" otherButtonTitles:nil, nil]; [alert show]; } else { NSLog(@"status: %ld", (long)[httpResponse statusCode]); } } else { NSLog(@"error: %@", error); } }];
Este método obtém um ID de instalação e um canal para notificações push e envia-o, juntamente com o tipo de dispositivo, para o método autenticado da API Web que cria um registo nos Hubs de Notificação. Esta API Web foi definida em Notificar utilizadores com Hubs de Notificação.
Agora que a aplicação cliente foi atualizada, regresse aos Notification users with Notification Hubs (Notificar utilizadores com Hubs de Notificação ) e atualize o serviço móvel para enviar notificações através dos Notification Hubs.