Sean Nguyen
Sean Nguyen

Reputation: 13158

Google channel api for c/c++ client

Is there a c/c++ client for google channel api?

Upvotes: 2

Views: 627

Answers (4)

Raman Sharma
Raman Sharma

Reputation: 4581

See if this helps. Google has recently announced new C++ API for almost all their services:

https://google-api-client-libraries.appspot.com/resources/api-libraries/documentation/compute/v1beta15/cpp/latest/

Upvotes: 0

cfedermann
cfedermann

Reputation: 3284

You can write an own client using libCURL for your HTTP requests and json-cpp to read/write JSON with C++.

Upvotes: 0

DrPizza
DrPizza

Reputation: 18360

Well, you could probably write your own client, since my understanding is that it's "just" HTTP and JSON.

There's an outstanding feature request that Google is resolutely ignoring to get alternative client APIs.

Upvotes: 4

Nick Johnson
Nick Johnson

Reputation: 101149

No. The only official client is witten in Javascript.

Upvotes: 2

Related Questions