Go to file
Vasiliy Tolstov d14ddecb6f bump go-micro to current master
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2021-01-10 14:47:03 +03:00
test fix import path for v2 release (#457) 2021-01-10 14:47:03 +03:00
buffer.go add a http client 2021-01-10 14:47:02 +03:00
codec.go fix import path for v2 release (#457) 2021-01-10 14:47:03 +03:00
go.mod bump go-micro to current master 2021-01-10 14:47:03 +03:00
go.sum bump go-micro to current master 2021-01-10 14:47:03 +03:00
http_test.go fix import path for v2 release (#457) 2021-01-10 14:47:03 +03:00
http.go replace config/cmd with cmd 2021-01-10 14:47:03 +03:00
message.go fix import path for v2 release (#457) 2021-01-10 14:47:03 +03:00
README.md update http client readme 2021-01-10 14:47:03 +03:00
request.go fix import path for v2 release (#457) 2021-01-10 14:47:03 +03:00
stream.go fix import path for v2 release (#457) 2021-01-10 14:47:03 +03:00

HTTP Client

This plugin is a http client for go-micro.

Overview

The http client wraps net/http to provide a robust go-micro client with service discovery, load balancing and streaming. It complies with the go-micro.Client interface.

Usage

Use directly

import "github.com/micro/go-plugins/client/http"

service := micro.NewService(
	micro.Name("my.service"),
	micro.Client(http.NewClient()),
)

Use with flags

import _ "github.com/micro/go-plugins/client/http"
go run main.go --client=http

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)

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