1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
# One way to run the example
```bash
# Handle dependencies
$ dep init
```
Follow the guides from this [README.md](./browser/README.md) to run the server and gateway.
```bash
# Make sure you are in the correct directory:
# $GOPATH/src/github.com/grpc-ecosystem/grpc-gateway/v2/examples
$ cd examples/internal/browser
$ pwd
# Install gulp
$ npm install -g gulp-cli
$ npm install
$ gulp
# Run
$ gulp bower
$ gulp backends
```
Then you can use curl or a browser to test:
```bash
# List all apis
$ curl http://localhost:8080/openapiv2/echo_service.swagger.json
# Visit the apis
$ curl -XPOST http://localhost:8080/v1/example/echo/foo
{"id":"foo"}
$ curl http://localhost:8080/v1/example/echo/foo/123
{"id":"foo","num":"123"}
```
So you have visited the apis by HTTP successfully. You can also try other apis.
|