Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to send push notifications to Android without building any application?

I don't want to build an application for my web site. However, I want to send push notifications to Android devices. Is this possible?

like image 418
ilhan Avatar asked Jun 26 '13 12:06

ilhan


People also ask

Can you send push notifications without an app?

Pushed allows you to send real-time notifications without developing your own app to iOs, Android and Desktop devices.

How do I send push notifications without installing apps?

You can use third-party service like Pushed (https://pushed.co/) or Spontit (https://spontit.com, https://api.spontit.com). Or you can setup the website as a Chrome-app on the phone and then you'll be able to send notifications through Chrome.

Is it possible to implement push notifications in Android How?

All push notifications requests for Android devices go through Firebase Cloud Messaging (FCM), Google's service which delivers them to the device. Pusher's SDKs and API are abstracted above FCM as well as Apple's APNs service so that you can deliver push notifications to both platforms with one request.

Can you send push notification without firebase?

How it is possible? It's definitely possible -- you don't have to use Firebase to deliver push notifications. You can roll out your own notification solution or consider a paid product such as Pushy (pushy.me) which does not rely on Firebase Cloud Messaging.


2 Answers

The answer to the question is simply NO, you need to register an app to google C2DM server, to be able to send push notification to this device.

like image 131
user2524247 Avatar answered Oct 28 '22 23:10

user2524247


It depends on your requirements. You can use third-party service like Pushed (https://pushed.co/) or Spontit (https://spontit.com, https://api.spontit.com).

Or you can setup the website as a Chrome-app on the phone and then you'll be able to send notifications through Chrome.

https://developers.google.com/cloud-messaging/chrome/client https://developers.google.com/web/updates/2015/03/push-notifications-on-the-open-web?hl=en

In both scenarious you'll need to advise your users to install the app on the phone which will subscribe to notifications.

like image 40
Jack Spektor Avatar answered Oct 29 '22 00:10

Jack Spektor