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/README.md

62 lines
1.2 KiB
Markdown
Raw Normal View History

2020-12-26 17:32:45 +02: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](https://godoc.org/github.com/micro/go-micro/client#Client) interface.
## Usage
### Use directly
```go
2021-01-20 23:01:10 +02:00
import "github.com/asim/go-micro/plugins/client/http"
2020-12-26 17:32:45 +02:00
service := micro.NewService(
micro.Name("my.service"),
micro.Client(http.NewClient()),
)
```
### Use with flags
```go
2021-01-20 23:01:10 +02:00
import _ "github.com/asim/go-micro/plugins/client/http"
2020-12-26 17:32:45 +02:00
```
```shell
go run main.go --client=http
```
### Call Service
Assuming you have a http service "my.service" with path "/foo/bar"
```go
// 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
```go
client.NewRequest("service", "/path", protoRequest{})
```
Json with content-type application/json
```go
client.NewJsonRequest("service", "/path", jsonRequest{})
```