Hi. There is an app ( Notify My Device ) that gives you an api key to send notifications to your android device.
https://www.notifymydevice.com/push?Api ... &PushText=
Is there a way i can use MS to send these notifications?
Our public API is very simple and easy to use. There are 2 methods to send a notify message:
1. Send a notify using email. Just send an email to <apikey>@notifymydevice.com. All devices that have subscribed to this apikey will receive a push notification. The subject of the mail is the title and the body should contain the message.
2. Use a HTTPS or HTTP post to deliver your notification. The url is: https://www.notifymydevice.com/push You should also supply these parameters: ApiKey, PushTitle, PushText.
send notification from MS to android
Moderators: Dorian (MJT support), JRL
- Marcus Tettmar
- Site Admin
- Posts: 7393
- Joined: Thu Sep 19, 2002 3:00 pm
- Location: Dorset, UK
- Contact:
Re: send notification from MS to android
Yes, use the HTTPRequest command.
Marcus Tettmar
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
Re: send notification from MS to android
Marcus can you please show me how to do it?
This is the address
https://www.notifymydevice.com/push?Api ... shText=fff
This is the address
https://www.notifymydevice.com/push?Api ... shText=fff
- Marcus Tettmar
- Site Admin
- Posts: 7393
- Joined: Thu Sep 19, 2002 3:00 pm
- Location: Dorset, UK
- Contact:
Re: send notification from MS to android
Something like this:
Code: Select all
Let>PostData=ApiKey=ABCDEFGH12345WHATEVER&PushTitle=Some Notification&PushText=Body of notification
HTTPRequest>https://www.notifymydevice.com/push,,POST,PostData,Response
Marcus Tettmar
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?