-1

Can any one tell me the detailed process to send push notifications from my web page to Android mobile. I am using Springs Hibernate & JSP's.

Dale K
  • 25,246
  • 15
  • 42
  • 71

1 Answers1

0

if you're not having your own Android app you can use a personal notification hub/app like Notify17.

What you would do is:

E.g. in curl format:

curl -X POST \
  "https://hook.notify17.net/api/raw/RAW_API_KEY" \
  -F title="Instance setup: finished" \
  -F content="Instance ${HOSTNAME} has been set up correctly!"

You can use any Java library/method to make the same request:

cmaster11
  • 527
  • 3
  • 6