UnifiedPush Server
  • Documentation
  • GitHub
  • Help

›Introduction

Introduction

  • Overview
  • Useful Terminology
  • Push Notifications
  • How the UnifiedPush Server works
  • Use-cases and scenarios

Running Unified Push

  • Running Unified Push
  • JMS Broker Configuration

Configuring Variants

  • Getting Started
  • Android Variant
  • iOS Variant
  • WebPush Variant

Configuring Clients

  • Android Client
  • iOS Client
  • Webpush Client
  • React Native Client
  • Cordova Client

Unified Push Server SDK

  • Java Sender API
  • Node Sender API
  • RESTful Sender API

Maintaining Unified Push

  • Maintaining Unified Push

Push Notifications

A push notification is a message that is "pushed" from backend server or application to user interface, e.g. (but not limited to) mobile applications and desktop applications(see wikipedia).

Push notifications allow your services to signal to you application there there is work it needs to do. This can include background work like synchronizing data or user visible work like displaying relevant. Push messages can be used to keep your application fresh and relevant so it isn't forgotten and uninstalled.

warning

Push notifications are great marketing tool, but you could lose users if you abuse them to send spam notifications.

Push notification vs text messages

One question that could arise could be: "Ok, if push notifications are a way to send unsolicited messages to the user, what is the difference with text messages?"

Although they are similar in many ways, they have some important difference:

  • you don't need to know the phone number of the user to send push notifications
  • unsolicited SMS messages are illegal in some state
  • Push Notifications are strictly related to your application, while text messages aren't. When the user taps on a push notification, your app will open. When the user taps on a text message, the messaging app will open
  • the user can choose to enable or disable push notification from a particular app. That's not true for text messages (user have to block you to stop receiving your messages)
  • Push Notifications can be used to trigger some work in your application, while text messages can't

What compose a push notifications

A push notification is composed by a number of fields. The most important are:

  • Title: a title associated with the content of the notification
  • Icon: an icon to be shown together with the content
  • Text: the content of the notification

Push to Sync notifications

When a push notification is received, you are not required to show it to the user. A message could notify the application that something new is ready and, for example, the application should sync as soon as possible.

To avoid draining the battery, your notification handler would schedule data synchronization with the server using your device OS's work scheduler.

Push notifications and battery draining

The operating system manages receiving push notification and batches work with other applications. By using push messaging as a signal your OS can schedule your application to do work when it is least impactful on the battery.

← Useful TerminologyHow the UnifiedPush Server works →
  • Push notification vs text messages
    • What compose a push notifications
  • Push to Sync notifications
  • Push notifications and battery draining
Docs
Getting Started
Community
HelpAeroGear mailing listStack Overflow
Social
UnifiedPush Server
Follow @aerogears
Copyright © 2020 the AeroGear team