Ionic push notifications api returns status 410. ¿Alternatives? - ionic-framework

I have been reading some forums and i found that ionic services are deprecated. Now developers have to find another alternatives for push and auth services. For push notifications there are alternatives such Firebase and Onesignal plugins.
I have to say that my proyect was using Ionic1 and implemented phonegap-plugin-push (~1.10.2). What should I use? and
What does it involve?
https://blog.ionicframework.com/sunsetting-ionic-cloud-push-and-auth/
https://forum.ionicframework.com/t/ionic-pro-an-push-notifications-shutdown-of-ionic-push/102813

For push services, you can still use Ionic Native Push, which is a wrapper for phonegap-plugin-push in Ionic 3. It uses Google Firebase Cloud Messaging (FCM) in the back end. See this page for a discussion on how to do it. I have been using Ionic Native Push successfully in Ionic 3.

Related

Using Ionic Appflow Build for non Ionic framework project

Is there a way to use Ionic Appflow to build and non-Ionic Framework project just using Capacitor?
Cause a on a blog by Ionic it said:
Appflow is the official Mobile DevOps platform built
by the Ionic team, focused on bringing powerful Mobile DevOps
workflows to hybrid app developers across Capacitor and Cordova
whether or not they are using Ionic Framework.
Link to the blog
Ionic Framework (the UI library) is not required.
However, as of today, Appflow requires an Ionic config file and a package.json file. See that link for details (ignore the rest of that guide). If you're building a modern web app, you'll likely have a package json already. for the ionic config, just create it manually but for "integrations" swap in "capacitor".
You'll also use the Ionic CLI for some of the configuration (like "ionic deploy" as you shared).

Unable to create build with Firebase plugin

I am trying to generate build with using firebase plugin with I am facing this issue during generating build.
I want to use phone authentication, and this plugin have a property for the phone authentication. there is also an FCM plugin but it doesn't have any phone authentication property.
I am using:
Ionic 5
Angular 8

fcm cordova plugin is not working on ios devices

I want to show push notifications for iOS in ionic 3 app.
I am using fcm cordova plugin.
It works for android but not for iOS.
I have uploaded push certificates on firebase for development and production.
When I send notifications from the firebase console i got no error but the message is not received.
When I send notifications via HTTP i got this error 'InvalidApnsCredential'.
Can anyone help?

Push notification in Ionic app using Amazon SNS

I am trying to implement Ionic push with Amazon sns.I am not understanding where to start from . Please guide...
Have a look at amazon sns with ionic framework
You can use the phonegap-plugin-push plugin to display the notifications inside your ionic app. It is not the easiest thing to setup, but there is comprehensive guide that can help you on your way.

Add iOS push notifications to Visual Studio Cordova Project

Hi I'm following this tutorial https://github.com/ggailey777/mobile-services-samples/tree/master/CordovaNotificationsArticle
to add iOS push notification to my Cordova project but couldn't get it to work. The APNS certificate is configured and I've uploaded the p12 file to azure mobile notification.
When I run the app it shows "Registered with Azure!" and in azure notification hub I can see the registration.
However when I send test push notification using visual studio, the message result is empty.
If I use azure portal, it shows "The test notification was sent"
And my iphone never got any notifications either when it's open or closed.
Am I missing something? Any help is much appreciated.
Thanks!
You are mixing and matching technologies. You cannot use iOS Native code in an Apache Cordova app. Based on your comments, use the cordova-push-notifications plugin. The README.md in the project describes how to add it for iOS. It's relatively simple.
You will still have to deal with how to get your device registered with Notification Hubs and getting a notification sent to your device. That is covered in detail in the Azure Notification Hubs documentation.