gargle
gargle copied to clipboard
Infrastructure for calling Google APIs from R, including auth
Hello Jenny I am use gargle inside `rgoogleads` package inside [auth function block](https://github.com/selesnow/rgoogleads/blob/master/R/gads_auth.R). [Out-Of-Band (OOB) flow Migration Guide](https://developers.google.com/identity/protocols/oauth2/resources/oob-migration) I have verified oauth client for this package:  And i recived...
https://developers.googleblog.com/2022/02/making-oauth-flows-safer.html?m=1#disallowed-oob > OAuth [out-of-band](https://developers.google.com/identity/protocols/oauth2/native-app#manual-copypaste) (OOB) is a legacy flow developed to support native clients which do not have a redirect URI like web apps to accept the credentials after a...
Hello, i has next error when using in `request_retry()`, ``` Error in eval(parse(text = text, keep.source = FALSE), envir) : object 'type' not found ``` but if i use `request_make()`...
This comment solved my long-standing issues with authentication `bigrquery` and some cloudyr libraries for GCP. https://github.com/r-lib/gargle/issues/138#issuecomment-716298851 Would it help if gargle looked for `....../gcloud/legacy_credentials//adc.json` rather than `...../gcloud/application_default_credentials.json`? Or, gave an...
Manually transferring from bigrquery, since cross-org transfer is not possible. This is about auth in GCP AI Platform Notebooks, so a combination of "on GCP" and "in a Jupyter Notebook"....
https://cloud.google.com/blog/products/identity-security/enabling-keyless-authentication-from-github-actions Given that gargle already supports Application Default Credentials, I am optimistic it won't be too hard to make use of this.
* Github secret names can only contain alphanumeric characters ([a-z], [A-Z], [0-9]) or underscores (_) * R package names cannot contain underscores (_), but can contain dots (.) * Some...
I've not given much attention to application default credentials for this first release. I've used it successfully now (with a service account token), but I've got a few lingering questions...
Hi, I'm using multiple `google*Rverse` R packages, and I would like to authenticate via [Workload Identity on GKE](https://cloud.google.com/kubernetes-engine/docs/how-to/workload-identity). (Right now I do it via service account json-s.) Is this currently...