Skip to content

Latest commit

 

History

History
26 lines (24 loc) · 436 Bytes

README.md

File metadata and controls

26 lines (24 loc) · 436 Bytes

PushNotificationServer

for send data via push notification without present in notification center(android)

POST /notification/data
body:
{
  "token": "",
  "data": {
    "ping": "hi"
  }
}

for send data via push notification with present in notification center(android)

POST /notification/ui
body:
{
  "token": "",
  "ui": {
    "title": "test",
    "body": "hello"
  }
}