Go to file
Nurzhan Ilyassov 916d248147 update tests 2024-03-31 20:21:25 +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
LICENSE use own fork 2021-01-10 14:48:10 +03:00
README.md move to micro v4 2023-04-28 22:29:18 +03:00
go.mod update for latest micro 2024-03-25 21:12:26 +03:00
go.sum update for latest micro 2024-03-25 21:12:26 +03:00
http.go update for latest micro 2024-03-25 21:12:26 +03:00
http_test.go add ability to send headers and cookies 2021-10-25 19:59:37 +03:00
options.go update for latest micro changes 2023-08-12 13:17:47 +03:00
request.go update for latest micro changes 2023-08-12 13:17:47 +03:00
stream.go update for latest micro 2024-03-25 21:12:26 +03:00
util.go fix nil nmsg in case of empty request body 2024-03-31 20:21:25 +03:00
util_test.go update tests 2024-03-31 20:21:25 +03:00

README.md

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/v4"

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