1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-12-12 08:23:58 +02:00
go-micro/plugins/client/http
2021-10-12 12:55:53 +01:00
..
test
buffer.go
codec.go go-micro.dev/v4 (#2305) 2021-10-12 12:55:53 +01:00
go.mod go-micro.dev/v4 (#2305) 2021-10-12 12:55:53 +01:00
go.sum 1.fix plugins go get bug. (#2187) 2021-06-30 07:21:03 +01:00
http_test.go go-micro.dev/v4 (#2305) 2021-10-12 12:55:53 +01:00
http.go go-micro.dev/v4 (#2305) 2021-10-12 12:55:53 +01:00
message.go go-micro.dev/v4 (#2305) 2021-10-12 12:55:53 +01:00
README.md
request.go go-micro.dev/v4 (#2305) 2021-10-12 12:55:53 +01:00
stream.go go-micro.dev/v4 (#2305) 2021-10-12 12:55:53 +01: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/asim/go-micro/plugins/client/http"

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

Use with flags

import _ "github.com/asim/go-micro/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{})