Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 940 Bytes

File metadata and controls

26 lines (20 loc) · 940 Bytes

VBA-HTTP API quick reference

The complete, maintained API documentation now lives in the public API guide. The task-oriented guides are indexed at guides/README.md.

Minimal example

Dim client As HttpClient
Dim response As HttpResponse

Set client = VBAHttp.CreateClient()
Set response = client.GetResponse("https://example.test/status/204")
response.RaiseForStatus

Use VBAHttp.CreateRequest for explicit methods, headers, query parameters, bodies, timeouts, and transport policies. HttpErrorCategory and HttpErrors.CategoryFromNumber provide the stable error model. Streaming download/upload APIs require VBAHttp.CreateNativeClient.

For installation and source distribution, see the getting started guide and distribution guide. Normative implementation contracts remain in docs/specs/.