generator
generator copied to clipboard
A binding and CLI generator for all google APIs
First of all, thank you, this is an extremely useful project! I am wondering if there are any examples to demonstrate how to use the generated libraries. E.g. a small...
Thanks for building this generator! I struggled to understand how to use it. After cloning the repo, I duly `cargo run -- --help` and was given 2 possible alternatives: ```bash...
Hello guys :smile: ! I am using rust on `front_end` with Wasm and I cannot use `reqwest` in this context because I need maximum optimization regarding the size of the...
This is a draft PR because, although it is fairly usable in its current state (see [google-apis-rs/generated@refactor/async](https://github.com/google-apis-rs/generated/tree/refactor/async)), it has some missing functionality: - [ ] [Google Cloud Storage] refactor `ResumableUpload`...
Hi, When trying to use a rest api method's param that supports repeated values (i.e. `Vec`), it fails at runtime as `reqwest` expects repeated fields to be passed in a...
Current generator only support URL-safe version. [ref](https://github.com/google-apis-rs/generator/blob/master/google_api_bytes/src/lib.rs#L4) It will panic when some apis(like [text-to-speech](https://cloud.google.com/text-to-speech/docs/reference/rest/v1/text/synthesize)) return standard version of base64 data.
What do you think about supporting [Application Default Credentials](https://cloud.google.com/docs/authentication/production)? To start we could just check `GOOGLE_APPLICATION_CREDENTIALS`. Down the road, we could also communicate with the [metadata server](https://cloud.google.com/compute/docs/storing-retrieving-metadata) to automatically obtain...
We should add licenses to all generated code and specify them in `Cargo.toml` (`cargo.rs`). Is anyone opposed to dual licensing under `MIT` either `APACHE-2.0`?
I don't think any of the identity platform APIs require an OAuth token in the request header... https://cloud.google.com/identity-platform/docs/use-rest-api#section-verify-custom-token If that is true, we should probably not require auth in the...
I have some code that implements the [Google Cloud Storage v4 signing algorithm](https://cloud.google.com/storage/docs/access-control/signing-urls-manually). It is a pretty annoying algorithm to implement by hand—mostly because the Google docs are pretty confusing...