fullstorydev / fullstorydev/grpcurl

Don't forget to escape in windows

Open
#493 0 comments 1 reaction 0 assignees View on GitHub
Dominant language
Go
Stars
12.8k
Forks
580
Avg merge
1h 8m
Merged PRs (30d)
5

Description

### ❌ Incorrect
If you run this:
```shell
grpcurl -d '{"name": "Go"}' -plaintext localhost:50051 helloworld.Greeter.SayHello
```

You will get the result:
```shell
Too many arguments.
Try 'grpcurl -help' for more details.
```

### ✔ Correct
The correct usage is this:
```shell
grpcurl -d "{\"name\":\"Go\"}" -plaintext localhost:50051 helloworld.Greeter.SayHello
```
You can get the expected result:
```shell
{
"message": "Hello Go"
}
```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.