CCTV Intergration via web post

I think if you just want to go to a web page then download whatever is there (like a GET), you can use

web.Download(url,[regex])

If you want to POST data, you can use either

web.PostData(url,data,[user],[password])
web.Upload(url,content)

They won’t send JSON nor expect a JSON response.

1 Like