Just popping in 
|
It should be possible to use SendData(id, data$) to send a post request, since POST data is part of the request body.
You should be able to send something like this:
POST /path/script.cgi HTTP/1.0 From: xxxyyyzzz User-Agent: HTTPTool/1.0 Content-Type: application/x-www-form-urlencoded Content-Length: 32
var1=something&var2=something
At least that is how I use REST webservices in Delphi, granted Delphi and Hollywood is not the same, but I would think the approach should be the same.
Edited by yssing on 2015/11/7 11:26:49
|