[ST Edge] - Local HTTP Requests

Hi all, I am making progress in my quest to replace my HubAction groovy based DTH with an Edge Driver.
I am trying to make an Http call to the server but get the following error.
Http Response = [string “socket”]:1301: Permission Denied
Any thoughts?

I am using the following code in the command handler
local res_payload = {}
local _, code = http.request({
url = ‘url = ‘http://192.168.188.121:80/api/callAction?deviceID=101&name=turnOn’’,
sink = ltn12.sink.table(res_payload),
method=‘GET’
})
log.info("Http Response = ", code)
print(table.concat(res_payload))