Anywhere
HTTP.post(url, [callOptions], [asyncCallback])
import { HTTP } from 'meteor/http'
Source Send an HTTP POST
request. Equivalent to calling HTTP.call
with "POST" as the first argument.
Arguments
- url String
-
The URL to which the request should be sent.
- callOptions Object
-
Options passed on to
HTTP.call
. - asyncCallback Function
-
Callback that is called when the request is completed. Required on the client.
Please login to continue.