Prowl HS3 Script
Posted: Fri Nov 22, 2013 8:46 pm
dear all,
hereby one of te first HS3 scripts i would like to share. Its used to send messages to phones or computers by use of PROWL, its quite simple;
save this as xxxx.vb replace the APIKEY
and call it in Homeseer with Main and as parameter the text that you want to send.
regards bart
hereby one of te first HS3 scripts i would like to share. Its used to send messages to phones or computers by use of PROWL, its quite simple;
Code: Select all
sub Main (byVal msg_short As String)
Dim url
Dim url_response
url = "apikey=YOURAPIKEY&application=HS3&event=" &msg_short
url_response = hs.URLAction("https://api.prowlapp.com/publicapi/add", "POST", url, "Content-Type: application/x-www-form-urlencoded")
End Sub
and call it in Homeseer with Main and as parameter the text that you want to send.
regards bart