Local Network HTTP/s Or Internet HTTPS with Authentication

I have actually found a few posts that are directly related to what I am trying to do. I have a local server that will launch scripts based on events in SmartThings. I was using the http post and http get methods listed in the doc link you posted, but they do not work for local LAN addresses. For that I am trying to use:

sendHubCommand(new physicalgraph.device.HubAction(“”“GET / HTTP/1.1\r\nHOST: $ip\r\n\r\n”“”, physicalgraph.device.Protocol.LAN, “${deviceNetworkId}”))

as described in:

I haven’t had much time to work on it, but I will probably be able to get it to work.

FYI, thanks for the link to the ide docs. I didn’t know that existed and it has been extremely helpful.