zackster
03/11/2022, 8:20 PMjumpmaster
03/11/2022, 10:07 PMScott Steinbeck
03/23/2022, 7:00 AMcfhttp(method="POST", charset="utf-8", url="<https://www.google.com/>", result="result") {
cfhttpparam(name="q", type="formfield", value="cfml");
}
writeDump(result);
or
httpService = new http(method = "POST", charset = "utf-8", url = "<https://www.google.com/>");
httpService.addParam(name = "q", type = "formfield", value = "cfml");
result = httpService.send().getPrefix();
writeDump(result);
I figure i should do it in script either way, to try and discourage tag usagezackster
03/26/2022, 3:07 PMScott Steinbeck
04/05/2022, 10:04 PMzackster
04/06/2022, 7:16 PMScott Steinbeck
04/10/2022, 3:27 AM