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

```haskell let tableToCreate = -- tabTimePartitioning .~ Just (tpField .~ Just "at" $ -- timePartitioning) $ tabLocation .~ Just bigQueryTableLocation $ tabTableReference .~ Just (trDataSetId .~ Just dataSetId $ trProjectId...

I've got a translate request with trace: ``` [Client Request] { host = translation.googleapis.com:443 secure = True method = POST timeout = ResponseTimeoutMicro 70000000 redirects = 10 path = /language/translate/v2...

[Google's OAuth docs](https://developers.google.com/identity/protocols/OAuth2) show pictures of the back-and-forth protocol to get user consent, get a response code, and exchange it for a token that can actually be used for API...

Would it be possible to add to examples a simple, runnable from console, example that shows how to (for example): 1. Obtain OAuth URL for Web Application credentials (I don't...

The documentation for jclSourceURIs (part of JobConfigurationLoad) says that it is REQUIRED (https://hackage.haskell.org/package/gogol-bigquery-0.4.0/docs/Network-Google-BigQuery-Types.html#v:jclSourceURIs). When doing a load JobsInsert request with uploaded data (from a local file or a live stream)...

Compiling the `Network.Google.YouTube.Types.{Sum,Product}` modules with ghc 8.4.4 or 8.6.5 takes ten minutes each and uses 7GB of RAM (that's with `-j1`). I haven't tried 8.2.2 or 8.8.1 properly, since the...

`amazonka` and `gogol` are really powerful "force multipliers" for Haskell when it comes to using the language for a lot of common tasks in cloud environments, but both projects have...

Some Google APIs support a batch endpoint that lets you combine multiple API calls into a single HTTP request. The specific one I'm interested in is Gmail (https://developers.google.com/gmail/api/guides/batch) though others...

Hi, Thanks for a great library! I've wanted to override the auth endpoint urls for testing/mocks. `Gogol` provides this ability for services via `ServiceConfig`. I was thinking of adding a...

I'm only interested in calling `oauth2`: `certs` / `tokeninfo` endpoints, which seem to me to not require any google-specific authentication, just HTTPS. Is there a way I can call them...