使用.net后端安装后,Azure Notification Hub无法反映在门户上

时间:2018-12-06 10:52:29

标签: azure azure-notificationhub

我正在尝试使用 .NET后端安装方法注册应用。该方法已成功执行,但是已注册活动设备尚未在Azure门户上更新。

但是当我执行 GetAllRegistrationsAsync 方法时,它会显示新安装的设备。有人可以帮忙吗?

  

后端(C#)上的安装方法

public async Task CreateOrUpdateInstallation(DeviceInstallation deviceInstallation)
{
    Installation installation = new Installation();
    installation.InstallationId = deviceInstallation.InstallationId;
    installation.PushChannel = deviceInstallation.PushChannel;
    installation.Platform = NotificationPlatform.Gcm;
    await hub.CreateOrUpdateInstallationAsync(installation);
}
  

获取所有注册方法

var allRegistrations = await hub.GetAllRegistrationsAsync(0);
  

在Azure门户上注册的活动设备

Showing 0 on the Azure Portal

1 个答案:

答案 0 :(得分:0)

通常,Azure门户不会实时更新“已注册的活动设备”,而是最多需要24小时才能显示它们。您可以在24小时后尝试,如果正确注册,将获得设备。