gogol icon indicating copy to clipboard operation
gogol copied to clipboard

A comprehensive Google Services SDK for Haskell.

Results 57 gogol issues
Sort by recently updated
recently updated
newest added

Google.runGoogle doesn't exist anymore, but the docs still point to it for executing commands, and it's not clear what the new alternative should be.

Hi, this is likely a trivial question, but i've been banging my head on this for a bit too long. How do I access the fields in a Pubsub RecievedMessage...

Various updates/fixes to eventually be catalogued here. 1. Per-service OAuth scopes are now generated as type aliases of the form: ```haskell -- | View and manage your data across Google...

### Partial responses The official documentation of [partial resources](https://developers.google.com/drive/v3/web/performance#partial) is misleading: > By default, the server sends back the full representation of a resource after processing requests. This is blatantly...

Hi, I would be interested in doing / assisting in a new major release with regenerated libraries. https://github.com/brendanhay/gogol/issues/152#issuecomment-678257351 mentions some work is underway. Is it possible to assist with this?...

In firestore's `Value'`, `_vNullValue :: Maybe ValueNullValue` is Nothing if the field is `null`. For the fields that exist in the firestore database, the value from `gogol` looks like this:...

Allow for user to provide a callback url as outlined in google oauth dos: Currently the redirectURI, callback, is a hard-coded value of: [callback, redirectURI](https://hackage.haskell.org/package/gogol-0.5.0/docs/src/Network.Google.Auth.InstalledApplication.html#redirectURI) Allow the user to provide...

When using versions of [servant](https://hackage.haskell.org/package/servant) higher than 0.16.2 I get the following error when I compile ``` gogol-core > [6 of 6] Compiling Network.Google.Prelude gogol-core > gogol-core > /run/user/1000/stack-ad522337ea560fac/gogol-core-0.5.0/src/Network/Google/Prelude.hs:31:1: error:...

I've got a module in my project that's the single interface to all of my usage of google cloud services. Currently, each individual function is rebuilding the `env` each time,...

I have a specific use case where I have to fetch a specific byte range of an object. Google cloud storage provides such an API [here](https://cloud.google.com/storage/docs/json_api/v1/parameters#range) and [here](https://cloud.google.com/storage/docs/json_api/v1/objects/get) by setting...