"belltown" wrote:
To add POST params to the request body, use ifUrlTransfer.AsyncPostFromString(request), where request is a string containing your POST parameters, url-escaped, separated by ampersands. To url-escape a parameter, call ifUrlTransfer.Escape(param).
Oh, my bad for glancing past *PostFromString()! (what was i thinking? probably the query string but that's part of the URL)
The non-Async version should work too, right?
Assuming one does not care about the response body (e.g. as often used as a REST action button).