Go to file
dependabot[bot] dede9e6488
Bump go.unistack.org/micro/v3 from 3.9.0 to 3.9.1
Bumps [go.unistack.org/micro/v3](https://github.com/unistack-org/micro) from 3.9.0 to 3.9.1.
- [Release notes](https://github.com/unistack-org/micro/releases)
- [Commits](https://github.com/unistack-org/micro/compare/v3.9.0...v3.9.1)

---
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>
2022-03-22 18:26:02 +00:00
.github Merge branch 'master' into wrappers 2022-03-10 12:28:56 +03: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.0 to 3.9.1 2022-03-22 18:26:02 +00:00
go.sum Bump go.unistack.org/micro/v3 from 3.9.0 to 3.9.1 2022-03-22 18:26:02 +00:00
http_test.go add ability to send headers and cookies 2021-10-25 19:59:37 +03:00
http.go add message metadata support 2022-03-05 18:46:00 +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{})