Effect Httppub

Source
:effect(pub) Http
  .http-get ( Str  (Result Str Str) )
  .http-post ( Str Str  (Result Str Str) )
Description

HTTP client effect supporting basic GET and POST operations.

Parent chain:IONetHttp

Operations

.http-get ( Str (Result Str Str) )

Performs an HTTP GET against the given URL and returns the response body.

.http-post ( Str Str (Result Str Str) )

Performs an HTTP POST with the given URL and body, returning the response body.