Clink is a highly configurable HTTP client for Go, designed for ease of use, extendability, and robustness. It supports various features like automatic retries and request rate limiting, making it ideal for both simple and advanced HTTP requests.
- Flexible Request Options: Easily configure headers, URLs, and authentication.
- Retry Mechanism: Automatic retries with configurable policies.
- Rate Limiting: Client-side rate limiting to avoid server-side limits.
To use Clink in your Go project, install it using go get
:
go get -u github.com/davesavic/clink
Here is a basic example of how to use Clink:
package main
import (
"fmt"
"github.com/davesavic/clink"
"net/http"
)
func main() {
// Create a new client with default options.
client := clink.NewClient()
// Create a new request with default options.
req, err := http.NewRequest(http.MethodGet, "https://httpbin.org/anything", nil)
// Send the request and get the response.
resp, err := client.Do(req)
if err != nil {
panic(err)
}
// Hydrate the response body into a map.
var target map[string]any
err = clink.ResponseToJson(resp, &target)
// Print the target map.
fmt.Println(target)
}
HTTP Methods (HEAD, OPTIONS, GET, HEAD, POST, PATCH, DELETE) are also supported
package main
import (
"github.com/davesavic/clink"
"encoding/json"
)
func main() {
client := clink.NewClient()
resp, err := client.Get("https://httpbin.org/get")
// ....
payload, err := json.Marshal(map[string]string{"username": "yumi"})
resp, err := client.Post("https://httpbin.org/post", payload)
}
For more examples, see the examples directory.
Contributions to Clink are welcome! If you find a bug, have a feature request, or want to contribute code, please open an issue or submit a pull request.