httpx

package
v0.1.5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 10, 2026 License: MIT Imports: 13 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

type Client struct {
	// contains filtered or unexported fields
}

Client wraps HTTP access with Magento-aware defaults (Bearer token auth).

func New

func New(opts Options) (*Client, error)

func (*Client) Do

func (c *Client) Do(req *http.Request, v any) error

func (*Client) NewRequest

func (c *Client) NewRequest(ctx context.Context, method, path string, body any) (*http.Request, error)

type HTTPError added in v0.1.4

type HTTPError struct {
	StatusCode int
	Status     string
	Message    string
}

HTTPError represents a non-2xx HTTP response. It carries the status code so that the top-level command runner can map failures to distinct exit codes (e.g. 404 vs 401) and emit targeted remediation hints.

func (*HTTPError) Error added in v0.1.4

func (e *HTTPError) Error() string

type Options

type Options struct {
	BaseURL   string
	Token     string
	UserAgent string
	Timeout   time.Duration

	EnableCache bool
	Retry       RetryPolicy
	Debug       bool
}

type RetryPolicy

type RetryPolicy struct {
	MaxAttempts    int
	InitialBackoff time.Duration
	MaxBackoff     time.Duration
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL