Page 1 of 1

Notification to ISY controller

PostPosted: Wed Jul 05, 2017 10:24 am
by cover
Hi,

I'm looking for the simplest way to notify my ISY controller when an alarm is triggered. I've got everything set up on the ISY side and was hoping to use the Alarm Decoder web app custom notifications feature.

All I need to do is an HTTP GET to an URL to notify the ISY. I can do this easily in a browser. The problem is that the ISY requires login using Basic Authentication. Chrome and at least some other browsers can handle this by including the user and password as part of the request, in the form

http://username:password@192.168.0.120/ ... 20/runThen

Note the username and password at the front. The 192 address and remainder of the URL is what I need to hit on the ISY. I gather that the browser can take that username and password and make it part of the http basic authentication header. There's more on this at

http://forum.universal-devices.com/topi ... t-request/

I don't see a way to accomplish this with the custom notification however.

Thanks,
Michael

Re: Notification to ISY controller

PostPosted: Wed Jul 05, 2017 6:38 pm
by kevin
Putting user:pass@location in the URL box doesn't work? If not, file an issue on github and we'll look into it or you can fix it and issue a pull request.

Re: Notification to ISY controller

PostPosted: Thu Jul 06, 2017 11:29 am
by cover
Thanks, Kevin