httpclient

package
v1.28.0 Latest Latest
Warning

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

Go to latest
Published: Feb 27, 2024 License: Apache-2.0 Imports: 5 Imported by: 3

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 a http.Client but only exposes the Do method to force consumers to always create a request with http.NewRequestWithContext().

func (*Client) Do

func (c *Client) Do(r *http.Request) (*http.Response, error)

func (*Client) GetNativeHTTP

func (c *Client) GetNativeHTTP() *http.Client

type Option

type Option func(o *Options)

Option defines a single option function.

func CheckRedirect

func CheckRedirect(cr func(req *http.Request, via []*http.Request) error) Option

CheckRedirect provides a function to set a custom CheckRedirect.

func Jar

func Jar(j http.CookieJar) Option

Jar provides a function to set a custom CookieJar.

func RoundTripper

func RoundTripper(rt http.RoundTripper) Option

RoundTripper provides a function to set a custom RoundTripper.

func Timeout

func Timeout(t time.Duration) Option

Timeout provides a function to set the timeout option.

type Options

type Options struct {
	Jar           http.CookieJar
	CheckRedirect func(req *http.Request, via []*http.Request) error
	Timeout       time.Duration
	RoundTripper  http.RoundTripper
}

Options defines the available options for this package.

Jump to

Keyboard shortcuts

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