sendRequest
Send gRPC requests to a server by specifying the proto file, server address, service, method, and JSON body. Supports SSL, timeout configuration, and custom headers.
Instructions
Send a request to a gRPC server
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Path to the proto file (Full path) | |
| address | Yes | Address of the gRPC server (e.g., localhost:6565) | |
| service | Yes | Service name (e.g., UserService) | |
| method | Yes | Method name (e.g., GetUser) | |
| body | Yes | Request body in JSON format | |
| headers | No | Optional headers to include in the request | |
| config | No | Configuration options for the request |