feat: add grpcurl

main
sudo pacman -Syu 2023-08-21 19:38:37 +07:00
parent a2b1a6400a
commit a14b22d856
4 changed files with 30 additions and 0 deletions

View File

@ -590,6 +590,11 @@
>https://github.com/itchyny/gojq</a
>
</li>
<li>
<a href="https://github.com/fullstorydev/grpcurl"
>https://github.com/fullstorydev/grpcurl</a
>
</li>
<li>
<a href="https://github.com/plantuml/plantuml"
>https://github.com/plantuml/plantuml</a

View File

@ -398,6 +398,21 @@ f2 -r <span class="pl-s"><span class="pl-pds">"</span>{mtime.YYYY}{mtime.MM}{mti
<div class="highlight highlight-text-adblock">
<pre>instaloader +login.txt +args.txt +targets.txt</pre>
</div>
<h2>
<a
id="user-content-grpcurl"
class="anchor"
aria-hidden="true"
href="#grpcurl"
><span aria-hidden="true" class="octicon octicon-link"></span></a
><a href="https://github.com/fullstorydev/grpcurl">gRPCurl</a>
</h2>
<div class="highlight highlight-source-shell">
<pre>grpcurl -proto path/file.proto \
-d <span class="pl-s"><span class="pl-pds">'</span>{"key": "value"}<span class="pl-pds">'</span></span> \
internal-social.zalopay.vn:443 \
pkg.Service/GetData</pre>
</div>
<div>
Feel free to ask me via

View File

@ -133,6 +133,7 @@ Misc
- https://github.com/mikefarah/yq
- https://github.com/itchyny/gojq
- https://github.com/fullstorydev/grpcurl
- https://github.com/plantuml/plantuml
Memory

View File

@ -321,3 +321,12 @@ Run:
```txt
instaloader +login.txt +args.txt +targets.txt
```
## [gRPCurl](https://github.com/fullstorydev/grpcurl)
```sh
grpcurl -proto path/file.proto \
-d '{"key": "value"}' \
internal-social.zalopay.vn:443 \
pkg.Service/GetData
```