Go to file
dependabot[bot] 5d32597c73
Bump dependabot/fetch-metadata from 1.3.3 to 1.3.4
Bumps [dependabot/fetch-metadata](https://github.com/dependabot/fetch-metadata) from 1.3.3 to 1.3.4.
- [Release notes](https://github.com/dependabot/fetch-metadata/releases)
- [Commits](https://github.com/dependabot/fetch-metadata/compare/v1.3.3...v1.3.4)

---
updated-dependencies:
- dependency-name: dependabot/fetch-metadata
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-10-03 18:19:46 +00:00
.github Bump dependabot/fetch-metadata from 1.3.3 to 1.3.4 2022-10-03 18:19:46 +00:00
.golangci.yml lint fixes (#25) 2021-04-25 16:26:36 +03:00
.synced use own fork 2021-01-10 14:48:10 +03:00
go.mod Bump go.unistack.org/micro/v3 from 3.9.10 to 3.9.11 2022-07-11 18:18:37 +00:00
go.sum Bump go.unistack.org/micro/v3 from 3.9.10 to 3.9.11 2022-07-11 18:18:37 +00:00
http_test.go add ability to send headers and cookies 2021-10-25 19:59:37 +03:00
http.go use backoff for lookup too 2022-05-01 23:32:37 +03:00
LICENSE use own fork 2021-01-10 14:48:10 +03:00
message.go fix for latest micro 2021-12-16 15:37:49 +03:00
options.go add ability to send headers and cookies 2021-10-25 19:59:37 +03:00
README.md add ability to send headers and cookies 2021-10-25 19:59:37 +03:00
request.go add ability to send headers and cookies 2021-10-25 19:59:37 +03:00
stream.go update for latest micro 2022-01-12 17:47:58 +03:00
util_test.go add ability to send headers and cookies 2021-10-25 19:59:37 +03:00
util.go add additional wrappers support 2022-03-10 12:27:37 +03:00

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{})