fullstorydev / fullstorydev/grpcurl
Don't forget to escape in windows
Open
- 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.