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.
Asked
Active
Viewed 238 times
1 Answers
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:
- Create a Notify17 account, it's free.
- Download the app for Android.
- From the dashboard, create a raw API key.
- From your server, send a request to the raw API key endpoint (API reference).
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