Go to file
Vasiliy Tolstov 520dc29f89 fixup header filling after making new request
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2021-07-09 12:25:26 +03:00
.github lint fixes (#25) 2021-04-25 16:26:36 +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 support metadata option 2021-07-09 11:00:19 +03:00
go.sum support metadata option 2021-07-09 11:00:19 +03:00
http_test.go add tag support 2021-03-23 00:29:27 +03:00
http.go fixup header filling after making new request 2021-07-09 12:25:26 +03:00
LICENSE use own fork 2021-01-10 14:48:10 +03:00
message.go lint fixes (#25) 2021-04-25 16:26:36 +03:00
options.go support metadata option 2021-07-09 11:00:19 +03:00
README.md use own fork 2021-01-10 14:48:10 +03:00
request.go allow to set content type with charset 2021-04-10 12:46:34 +03:00
stream.go lint fixes (#25) 2021-04-25 16:26:36 +03:00
util_test.go lint fixes (#25) 2021-04-25 16:26:36 +03:00
util.go lint 2021-07-05 16:10:38 +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 "github.com/unistack-org/micro-client-http"

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