RPC

command
v1.1.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 21, 2019 License: Apache-2.0 Imports: 5 Imported by: 0

README

RPC API

本示例我们介绍如何使用RPC handler模式的Micro API,以下简称API

该模式下允许我们通过RPC的方式把HTTP请求转发到go-micro微服务上。

需要提醒的是,RPC模式下API只接收POST方式的请求,并且只支付内容格式content-typeapplication/json或者application/protobuf

使用方法

以rpc模式运行API

micro api --handler=rpc
go run rpc.go

当我们POST请求到 demo/Alice/sing时,API会将它转成RPC转发到go.micro.api.demo服务的Alice.sing接口上。

curl -H 'Content-Type: application/json' -d '{"rev_msg": "evan"}' "http://localhost:8080/demo/Alice/sing"

同样,POST请求到 demo/Bob/dance时,API会将它转成RPC转发到go.micro.api.demo服务的Bob.dance接口上。

curl -H 'Content-Type: application/json' -d '{"rev_msg": "evan"}' "http://localhost:8080/demo/Bob/dance"

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL