mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-18 23:47:48 +02:00
18 lines
416 B
Go
18 lines
416 B
Go
package http
|
|
|
|
import (
|
|
"context"
|
|
h "net/http"
|
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
)
|
|
|
|
// POST makes a POST request.
|
|
// @params params (Object) - request parameters.
|
|
// * url (String) - Target url
|
|
// * body (Binary) - POST data
|
|
// * headers (Object) optional - HTTP headers
|
|
func POST(ctx context.Context, args ...core.Value) (core.Value, error) {
|
|
return execMethod(ctx, h.MethodPost, args)
|
|
}
|