Skip to main content

gRPC

This article will guide you how to manage gRPC API in Apidog.

gRPC is an efficient, fast, and reliable Remote Procedure Call (RPC) framework widely used in various scenarios. In microservices architecture, Apidog facilitates efficient communication across services. For scenarios involving substantial data transfer, Apidog utilizes streaming capabilities to reduce network latency and bandwidth consumption.

tip

The gRPC API debugging functionality is currently in the Beta testing phase. Apidog version must be equal to or greater than 2.3.0 to use the gRPC API debugging feature.

Create a New gRPC Project

Click the "New Project" button on the Apidog homepage and select "gRPC Project (Beta)."

Import Proto

gRPC follows an API-First approach, meaning that before development, services, methods, and messages must be defined through .proto files. Therefore, before debugging gRPC APIs using Apidog, you need to import the .proto file that serves as the API definition.

Initial Import

Currently, there are two ways to import .proto files:

  • Local file
  • URL hosting the .proto file

The selected .proto file will be imported as one Proto, where the service will be imported as a service, and rpc will be imported as methods.

If the chosen .proto file depends on other .proto files, you need to manually add the dependency directory.

Services from other .proto files that the selected .proto file depends on will also be imported into the same Proto if their package belongs to the same package as the selected .proto file.

Reimport

If the imported .proto file undergoes changes, it can be reimported in Apidog: right-click on Proto, then click the "Reimport" button.

Invocation Methods

When defining gRPC methods using .proto files, Apidog supports four types:

  • Unary: One-way call
  • Server Streaming: Server-side streaming
  • Client Streaming: Client-side streaming
  • Bidirectional Streaming: Bidirectional streaming

Apidog supports all four method types.

Unary Call

Unary calls are similar to HTTP requests. Enter the URL in the address bar, input the message content in JSON format under the Message tab, click the "Invoke" button, and the unary call will be initiated.

Additionally, you can manually fill in Metadata and Auth information to meet authentication or other complex scenarios.

Streaming Call

Streaming calls are similar to WebSocket connections. After initiating the call, you can write and send messages under the Message tab. Server streaming, client streaming, and bidirectional streaming fall under the streaming call types.

Apidog provides a timeline view that centrally displays the call status, sent messages, and received messages in chronological order. Clicking on a message allows easy viewing of message details.

Advanced Usage

Auto-generate Dynamic Values

Apidog can recognize the content in .proto files, allowing you to click the "Auto-generate" button to generate the message body. For more flexible dynamic data, you can configure and generate expressions using the "Dynamic Values" feature.

Refer to the "Dynamic Values" for more detailed instructions.

Use Variables

You can use Apidog variables in gRPC messages and Metadata.Refer to the "Environment Variable Types" documentation for detailed instructions.

Enable TLS

gRPC APIs support establishing secure connections through TLS.

Using Apidog, you can click on the protocol selector in front of the URL to quickly toggle the TLS status.

Additionally, Apidog is compatible with using grpcs:// in the URL to enable TLS for the connection. Conversely, grpc:// indicates TLS is not enabled.

Manage Server Addresses and Environments

Click the plus icon on the right side of the URL address bar to add the currently used server address to an environment.

Then, select the environment and server address in the upper right corner, and choose "Follow Default" in the URL address bar to use a unified server address for debugging all methods.

View Proto Files and API Parameters

View Proto File Content

In Apidog, clicking on the Proto in the left directory tree allows you to view the raw content of the .proto file.

View Request and Response Parameters

gRPC uses ProtoBuf as the serialization format, meaning that each message is transmitted in ProtoBuf format when sending or receiving messages. Unlike other text-based serialization formats (JSON, XML), ProtoBuf is a binary format not suitable for human writing and reading. Therefore, when calling gRPC APIs In Apidog, all messages are written and displayed in JSON format.

You can view the request and response parameters represented in JSON format on the API information page.

ProtoBuf and JSON have a mapping relationship for data types, as shown in the table below:

ProtoBuf 3JSONJSON Example
messageobject{"fooBar": v, "g": null, …}
enumstring"FOO_BAR"
map<K,V>object{"k": v, …}
repeated Varray[v, …]
boolbooleantrue, false
stringstring"Hello World!"
bytesbase64 string"YWJjMTIzIT8kKiYoKSctPUB+"
int32, fixed32, uint32number1, -10, 0
int64, fixed64, uint64string"1", "-10"
float, doublenumber1.1, -10.0, 0, "NaN", "Infinity"

Save Debugging Information

After completing debugging, click the "Save" button to save server URL, messages, Metadata, etc., in the current method for other team members to debug.