Xamarin Forms: push-уведомление не получено на устройство ios - PullRequest
1 голос
/ 25 июня 2019

Я сделал следующие вещи:

  1. Создал проект в консоли FCM и добавил в него проект ios.
  2. Скачал GoogleService-Info.plist и добавил его в каталог проекта xamarin forms ios и установил действие сборки как Bundlesource.
  3. В Info.plist включен удаленный фоновый режим уведомлений.
  4. Добавлен FirebaseAppDelegateProxyEnabled в файле Info.plist приложения и задано значение No.
  5. Создал профиль обеспечения и сертификат распространения и установил его в доступ к цепочке для ключей. Также сопоставлены эти сертификаты в настройках проекта.
  6. Загружен сертификат .p12 в консоль FCM.
  7. Добавлены коды для обработки push-уведомлений в AppDelegate.cs.

Мой код:

    [Register("AppDelegate")]
    public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate, IUNUserNotificationCenterDelegate
    {
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            global::Xamarin.Forms.Forms.Init();
            LoadApplication(new App("",""));
            RequestPushPermissionsAsync();
            _launchoptions = options;
            // Register your app for remote notifications.
        if (UIDevice.CurrentDevice.CheckSystemVersion(10, 0))
        {
            // iOS 10 or later
            var authOptions = UNAuthorizationOptions.Alert | UNAuthorizationOptions.Badge | UNAuthorizationOptions.Sound;
            UNUserNotificationCenter.Current.RequestAuthorization(authOptions, (granted, error) => {
                Console.WriteLine(granted);
            });

            // For iOS 10 display notification (sent via APNS)
            UNUserNotificationCenter.Current.Delegate = this;

            // For iOS 10 data message (sent via FCM)
            //Messaging.SharedInstance.RemoteMessageDelegate = this;
        }
        else
        {
            // iOS 9 or before
            var allNotificationTypes = UIUserNotificationType.Alert | UIUserNotificationType.Badge | UIUserNotificationType.Sound;
            var settings = UIUserNotificationSettings.GetSettingsForTypes(allNotificationTypes, null);
            UIApplication.SharedApplication.RegisterUserNotificationSettings(settings);
        }

        UIApplication.SharedApplication.RegisterForRemoteNotifications();
            return base.FinishedLaunching(app, options);
        }
        NSDictionary _launchoptions;
        public override void OnActivated(UIApplication uiApplication)
        {
            base.OnActivated(uiApplication);
            if (_launchoptions != null && _launchoptions.ContainsKey(UIApplication.LaunchOptionsRemoteNotificationKey))
            {
                var notfication = _launchoptions[UIApplication.LaunchOptionsRemoteNotificationKey] as NSDictionary;
                PresentNotification(notfication);
            }
            _launchoptions = null;
        }

        async Task RequestPushPermissionsAsync()
        {
            var requestResult = await UNUserNotificationCenter.Current.RequestAuthorizationAsync(
                 UNAuthorizationOptions.Alert
                | UNAuthorizationOptions.Badge
                | UNAuthorizationOptions.Sound);

            bool approved = requestResult.Item1;
            NSError error = requestResult.Item2;
            if (error == null)
            {
                if (!approved)
                {
                    Console.Write("Permission to receive notification was not granted");
                    return;
                }

                var currentSettings = await UNUserNotificationCenter.Current.GetNotificationSettingsAsync();
                if (currentSettings.AuthorizationStatus != UNAuthorizationStatus.Authorized)
                {
                    Console.WriteLine("Permissions were requested in the past but have been revoked (-Settings  app)");
                    return;
                }
                UIApplication.SharedApplication.RegisterForRemoteNotifications();
            }
            else
            {
                Console.Write($"Error requesting permissions: {error}.");
            }
        }

        public async override void RegisteredForRemoteNotifications(
        UIApplication application, NSData deviceToken)
    {
        //if (deviceToken == null)
        //{
        //    // Can happen in rare conditions e.g. after restoring a device.
        //    return;
        //}

        //Console.WriteLine($"Token received: {deviceToken}");

        // Get current device token
        var DeviceToken = deviceToken.Description;
        if (!string.IsNullOrWhiteSpace(DeviceToken))
        {
            DeviceToken = DeviceToken.Trim('<').Trim('>');
        }

        Console.WriteLine($"deviceToken received: {deviceToken}");
        Console.WriteLine($"DeviceToken received: {DeviceToken}");

        // Get previous device token
        var oldDeviceToken = NSUserDefaults.StandardUserDefaults.StringForKey("PushDeviceToken");

        // Has the token changed?
        if (string.IsNullOrEmpty(oldDeviceToken) || !oldDeviceToken.Equals(DeviceToken))
        {
            //TODO: Put your own logic here to notify your server that the device token has changed/been created!
        }

        // Save new device token
        NSUserDefaults.StandardUserDefaults.SetString(DeviceToken, "PushDeviceToken");

        await SendRegistrationToServerAsync(DeviceToken);
    }

        async Task SendRegistrationTokenToMainPRoject(NSData deviceToken)
        {
            MessagingCenter.Send<object, string>(this, "fcmtoken", deviceToken.ToString());
        }

        public override void FailedToRegisterForRemoteNotifications(UIApplication application, NSError error)
        {
            Console.WriteLine($"Failed to register for remote notifications: {error.Description}");
        }

        public override void DidReceiveRemoteNotification(UIApplication application, NSDictionary userInfo,
            Action<UIBackgroundFetchResult> completionHandler)
        {
            PresentNotification(userInfo);
            completionHandler(UIBackgroundFetchResult.NoData);
            try
            {
                UIApplication.SharedApplication.ApplicationIconBadgeNumber = 0;
                NSDictionary aps = userInfo.ObjectForKey(new NSString("aps")) as NSDictionary;
                var message = (aps[new NSString("webContentList")] as NSString).ToString();
                LoadApplication(new App("", message));
            }
            catch (Exception ex)
            {
                //LogInfo.ReportErrorInfo(ex.Message, ex.StackTrace, "AppDelegate-DidReceiveRemoteNotification");
            }
        }

        void PresentNotification(NSDictionary userInfo)
        {
            NSDictionary aps = userInfo.ObjectForKey(new NSString("aps")) as NSDictionary;

            var msg = string.Empty;

            if (aps.ContainsKey(new NSString("alert")))
            {
                msg = (aps[new NSString("alert")] as NSString).ToString();
            }
            if (string.IsNullOrEmpty(msg))
            {
                msg = "(unable to parse)";
            }
            MessagingCenter.Send<object, string>(this, App.NotificationReceivedKey, msg);
        }
    }

Я не использую какие-либо пакеты NuGet в части ios. При запуске проекта на устройстве работает часть, генерирующая токены FCM, и я вижу токен fcm на консоли VS. Я попытался отправить тестовое уведомление на устройство от почтальона, но получил ошибку InvalidRegistration.

Ответ почтальона

{
    "multicast_id": 8754155136812875313,
    "success": 0,
    "failure": 1,
    "canonical_ids": 0,
    "results": [
        {
            "error": "InvalidRegistration"
        }
    ]
}

Тело почтальона

 {
    "to" : "d20ad003 7473bfba 85dffc33 1534decf b4b886f1 c738878f fd7f2c60 d9dabc36",
 "collapse_key" : "type_a",
 "data" : {
     "body" : "Body of Your Notification in Data",
     "title": "Title of Your Notification in Title",
     "key_1" : "Value for key_1",
     "key_2" : "Value for key_2"
 },
 "notification" : {
     "body" : "Body of Your Notification",
     "title": "Title of Your Notification",
     "sound": "default",
     "content_available" : true
 }
}

Я завершил реализацию части android и получаю уведомления при нажатии от почтальона. Но я получаю ошибку InvalidRegistration на ios-части и не получаю никаких уведомлений на моем устройстве ios.

Я следую этому видео на YouTube для этой реализации, и полный исходный код здесь .

Кто-нибудь предложит решение этой проблемы.

Заранее спасибо.

Обновление

Я создал образец проекта и коллекцию почтальонов и добавил его в мою папку Google .

Коллекция Postman содержит 2 REST API, один для устройства Android, а другой для устройства ios

Если вы импортируете коллекцию почтальонов и запустите Android REST API, я получу уведомление, потому что я добавил на него токен FCM своего устройства. Но при запуске ios REST API в почтальоне выдает ошибку InvalidRegistration в почтальоне.

Пожалуйста, пройдите пример проекта и, пожалуйста, дайте мне решение?

1 Ответ

1 голос
/ 04 июля 2019

Я рассмотрел и могу решить эту проблему.

  1. Установите плагин Xamarin.Firebase.iOS.CloudMessaging в проекте iOS.
  2. Класс AppDelegate должен наследоваться от IUNUserNotificationCenterDelegate и IMessagingDelegateинтерфейсы.
  3. Включают Firebase.Core.App.Configure ();в методе FinishedLaunching перед регистрацией удаленного уведомления.
  4. Затем вы можете добавить регистрирующий код удаленного уведомления (Вы можете получить код по указанной ссылке).
  5. Вам необходимо установить делегат уведомления пользователя и общий обмен сообщениямимгновенный делегат (UNUserNotificationCenter.Current.Delegate = this; // Для iOS 10 отображать уведомления (отправленные через APNS) и Messaging.SharedInstance.Delegate = this;).
  6. Включить методы DidReceiveRegistrationToken и DidReceiveMessage с соответствующими атрибутами

Пожалуйста, обратитесь к этому классу AppDelegate для большей ясности https://github.com/xamarin/GoogleApisForiOSComponents/blob/master/Firebase.CloudMessaging/samples/CloudMessagingSample/CloudMessagingSample/AppDelegate.cs

Связанная тема Xamarin Forums https://forums.xamarin.com/discussion/159477/xamarin-forms-push-notification-is-not-receiving-to-ios-device#latest

...