Go to file
Vasiliy Tolstov 134031e18b update for latest micro logger changes
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2024-10-12 13:26:11 +03:00
.github Bump dependabot/fetch-metadata from 1.3.5 to 1.3.6 (#97) 2023-01-30 21:21:22 +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 update for latest micro logger changes 2024-10-12 13:26:11 +03:00
go.sum update for latest micro logger changes 2024-10-12 13:26:11 +03:00
http_test.go try to fixup 2024-05-20 08:55:24 +03:00
http.go add metrics and tracing 2024-04-23 06:51:47 +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 logger changes 2024-10-12 13:26:11 +03:00
util_test.go try to fixup 2024-05-20 08:55:24 +03:00
util.go try to fixup 2024-05-20 08:55:24 +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{})