7f7081e6e8
Bumps [go.unistack.org/micro/v3](https://github.com/unistack-org/micro) from 3.10.13 to 3.10.14. - [Release notes](https://github.com/unistack-org/micro/releases) - [Commits](https://github.com/unistack-org/micro/compare/v3.10.13...v3.10.14) --- updated-dependencies: - dependency-name: go.unistack.org/micro/v3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> |
||
---|---|---|
.github | ||
.golangci.yml | ||
.synced | ||
go.mod | ||
go.sum | ||
http_test.go | ||
http.go | ||
LICENSE | ||
message.go | ||
options.go | ||
README.md | ||
request.go | ||
stream.go | ||
util_test.go | ||
util.go |
HTTP Client
This plugin is a http client for micro.
Overview
The http client wraps net/http
to provide a robust micro client with service discovery, load balancing and streaming.
It complies with the micro.Client interface.
Usage
Use directly
import "go.unistack.org/micro-client-http/v3"
service := micro.NewService(
micro.Name("my.service"),
micro.Client(http.NewClient()),
)
Call Service
Assuming you have a http service "my.service" with path "/foo/bar"
// new client
client := http.NewClient()
// create request/response
request := client.NewRequest("my.service", "/foo/bar", protoRequest{})
response := new(protoResponse)
// call service
err := client.Call(context.TODO(), request, response)
or you can call any rest api or site and unmarshal to response struct
// new client
client := client.NewClientCallOptions(http.NewClient(), http.Address("https://api.github.com"))
req := client.NewRequest("github", "/users/vtolstov", nil)
rsp := make(map[string]interface{})
err := c.Call(context.TODO(), req, &rsp, mhttp.Method(http.MethodGet))
Look at http_test.go for detailed use.
Encoding
Default protobuf with content-type application/proto
client.NewRequest("service", "/path", protoRequest{})
Json with content-type application/json
client.NewJsonRequest("service", "/path", jsonRequest{})