带有Azure Notification Hub的Xamarin Forms IOS

问题描述 投票:2回答:1

我知道这个问题被问过多次。所以在这里忍受我。

我正在尝试使用Xamarin表单与我的Android / iOS客户端实施Azure Notification Hub。

对于Android来说可以,但是对于iOS,我没有收到任何通知。

这里是我为iOS做的清单

  1. 生成证书和配置文件
  2. 在MacOS上注册证书
  3. 已导出p12文件并已导入Azure Hub
  4. 我还在Info.plist(后台远程通知)中添加了权限
  5. Entitlements.plist文件中没有更改
  6. 我能够从APN服务获得设备令牌
  7. 获得令牌后,我可以在Azure Hub上注册

但是我无法收到任何通知,而且没有一个函数被称为(DidRegisterUserNotificationSettings,WillPresentNotification,ReceivedRemoteNotification,DidRegisterUserNotificationSettings,FailedToRegisterForRemoteNotifications,DidReceiveRemoteNotification)

但是叫RegisteredForRemoteNotifications

我还测试了设备令牌,无论是否从中删除了'<> ',但都没有成功。

可能是什么问题?

这是我的代码

 public override void RegisteredForRemoteNotifications(UIApplication application, NSData deviceToken)
        {
            GlobalVariables.Instance.PnsToken = deviceToken.Description
                                 .Replace("<", string.Empty)
                                 .Replace(">", string.Empty)
                                 .Replace(" ", string.Empty)
                                 .ToUpper();
            RegisteredForHub(application, deviceToken);
        }

        public void RegisteredForHub(UIApplication application, NSData deviceToken)
        {
            string pnsHandle = deviceToken.Description
                                 .Replace("<", string.Empty)
                                 .Replace(">", string.Empty)
                                 .Replace(" ", string.Empty)
                                 .ToUpper();
            _hub = new SBNotificationHub(Constant.ListenConnectionString, Constant.NotificationHubName);

            _hub.UnregisterNative((error) =>
            {
                if (error != null)
                {
                    Debug.WriteLine($"Unable to call unregister Native {error}");
                }
            });
            _hub.UnregisterTemplate("defaultTemplate",(error) =>
            {
                if (error != null)
                {
                    Debug.WriteLine($"Unable to call unregister Template {error}");
                }
            });
            // update registration with Azure Notification Hub
            _hub.UnregisterAll(deviceToken, (error) =>
            {
                if (error != null)
                {
                    Debug.WriteLine($"Unable to call unregister {error}");
                    return;
                }

                var tags = new NSSet(Constant.SubscribeTags);
                _hub.RegisterNative(pnsHandle, tags, (errorCallback) =>
                {
                    if (errorCallback != null)
                    {
                        Debug.WriteLine($"RegisterNativeAsync error: {errorCallback}");
                    }
                });
                var templateExpiration = DateTime.Now.AddDays(120)
                    .ToString(System.Globalization.CultureInfo.CreateSpecificCulture("en-US"));
                //_hub.RegisterTemplate(deviceToken, "defaultTemplate", Constant.ApnTemplateBody, templateExpiration,
                //    tags, (errorCallback) =>
                //    {
                //        if (errorCallback != null)
                //        {
                //            Debug.WriteLine($"RegisterTemplateAsync error: {errorCallback}");
                //        }
                //    });
            });
azure xamarin.forms xamarin.ios apple-push-notifications
1个回答
0
投票

[经过大量的试验和错误,并进行了许多小时的谷歌搜索。我发现问题出在Azure上。

我已经上传了正确的证书,但是密码是一个字符,因此没有发送通知。

如果用户为其证书文件输入了错误的密码,Azure会提示用户输入APN。

© www.soinside.com 2019 - 2024. All rights reserved.