我正在尝试使用 .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门户上注册的活动设备
答案 0 :(得分:0)
通常,Azure门户不会实时更新“已注册的活动设备”,而是最多需要24小时才能显示它们。您可以在24小时后尝试,如果正确注册,将获得设备。