googleapis.github.io

How to Call Google APIs: RPC Edition

For many developers, the easiest way to call a Google API is with one of our client libraries. But occasionally someone may prefer to make API calls directly - perhaps from a language or environment that we don’t support or using a different networking library or tool. Here we’ll show you how to do it.

This page focuses on calling Google APIs directly using their underlying RPC interfaces. Most Google APIs are also available as REST services. For that, see How to Call Google APIs, REST Edition.

What you’ll need

An API definition

Most Google APIs are designed as RPC APIs using Protocol Buffers. The Protocol Buffers definitions of public Google APIs are hosted on GitHub in the googleapis/googleapis repository.

For these examples, we’ll use the Cloud Natural Language API, which is defined by google/cloud/language/v1/language_service.proto. The RPC details are documented online in the Google Cloud Natural Language API reference. We’ll call the AnalyzeEntities API, which takes a block of text as input and returns a list of names and nouns that it finds in the text along with some interesting properties of each entity.

Protocol Buffers

For all Google RPC APIs, the messages that are sent and received using the Protocol Buffers encoding, and the definitive descriptions of these APIs are written in the Protocol Buffers Language.

To compile Protocol Buffer Language files, you’ll need protoc, the Protocol Buffer compiler. You can download protoc from the google/protobuf release page on GitHub (look for the protoc release for your machine architecture, e.g. protoc-3.6.0-linux-x86_64.zip) or build it from source (this will take a while).

You’ll probably also need a code generation plugin for the language that you’re using. Plugins are standalone executables written in many different languages, and the plugin interface is defined in the plugin.proto file. Here are some plugins that we have used:

For a list of Google-supported languages, see the Protocol Buffers API Reference.

Making RPC API requests

gRPC is the recommended way to call Google RPC APIs. gRPC support is typically provided by additional protoc plugins that generate code for API clients and servers. This code uses lower-level primitives that send messages using gRPC’s HTTP/2-based messaging system, which supports request multiplexing, streaming APIs, and advanced flow control. To learn more about working with gRPC, visit grpc.io/docs.

If gRPC support is unavailable, Google APIs can also be called using HTTP/1.1 or later using the fallback protocol described in the next section.

Authentication

To use Google APIs, a client needs to authenticate with an API key or an OAuth token. For more information, see the Google Cloud Authentication Overview.

API keys can be obtained from the Google Cloud Console > Credentials page. OAuth tokens can be obtained by OAuth 2 clients and libraries. For a sample command-line client, see the oauth2l on GitHub.

gRPC Fallback (Experimental)

Along with gRPC, most Google APIs support a simple fallback protocol that uses Protocol Buffers (protobuf) over HTTP. It allows clients to call Google APIs directly, often using standard library functions.

This protocol uses fixed URLs to specify the RPC endpoints, and passes request/response messages as HTTP request/response body using HTTP POST. It uses normal HTTP headers to pass the RPC metadata, such as System Parameters.

URL

RPC URLs have the following format:

URL ::= BaseUrl "/" Service "/" Method

Requests

RPC request messages are serialized and sent as the HTTP request body. For the server to handle the request properly, the client must set several HTTP request headers:

Responses

For successful requests, the HTTP status code is 200 and the HTTP response body contains the serialized RPC response message. For unsuccessful requests, the HTTP status code is the HTTP mapping for google.rpc.Code and the HTTP response body contains a serialized google.rpc.Status message. For details, see Errors in the API Design Guide.

The HTTP response contains at least the following headers:

Examples

To illustrate how easily the gRPC fallback protocol can be used to call Google RPC APIs, we’ve written a few examples. Each is as basic as possible - using standard library functions wherever possible and commonly-used Protocol Buffer support code. If you write one in a different language, send us a pull request!