所以我一直按照本教程: http://www.windowsazure.com/en-us/develop/mobile/tutorials/get-started-with-push-dotnet移動服務Azure的推URI
和第二教程 http://www.windowsazure.com/en-us/develop/mobile/tutorials/push-notifications-to-users-dotnet/
什麼,我想問一下是什麼表「通道」? 現在完成第二個教程後,每次啓動應用程序時都會創建此表中的新條目。
我想要做的是有一個信道爲一個用戶(它們是由活的用戶ID,我通過與單點登錄直播SDK得到區分)..
Im做一個筆記應用程序,我有什麼要做,所以每個用戶只能得到這些推送通知(新的筆記項),這只是他的用戶名?
是否必須在Azure管理門戶的「插入」腳本中更改任何內容?
private async void AcquirePushChannel()
{
CurrentChannel =
await PushNotificationChannelManager.CreatePushNotificationChannelForApplicationAsync();
IMobileServiceTable<Channel> channelTable = App.MobileService.GetTable<Channel>();
var channel = new Channel { Uri = CurrentChannel.Uri };
await channelTable.InsertAsync(channel);
}
這是負責推送通道創建的代碼。