Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/r-lib/gargle
Infrastructure for calling Google APIs from R, including auth
https://github.com/r-lib/gargle
authentication google package r rstats
Last synced: 3 months ago
JSON representation
Infrastructure for calling Google APIs from R, including auth
- Host: GitHub
- URL: https://github.com/r-lib/gargle
- Owner: r-lib
- License: other
- Created: 2015-12-24T19:53:03.000Z (almost 9 years ago)
- Default Branch: main
- Last Pushed: 2024-04-01T17:47:43.000Z (7 months ago)
- Last Synced: 2024-07-20T09:46:32.696Z (4 months ago)
- Topics: authentication, google, package, r, rstats
- Language: R
- Homepage: https://gargle.r-lib.org/
- Size: 4.89 MB
- Stars: 114
- Watchers: 14
- Forks: 33
- Open Issues: 30
-
Metadata Files:
- Readme: README.Rmd
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
- Support: .github/SUPPORT.md
Awesome Lists containing this project
- awesome-shiny-extensions - gargle - Infrastructure for calling Google APIs from R, including auth. (Backend / Authentication)
- jimsghstars - r-lib/gargle - Infrastructure for calling Google APIs from R, including auth (R)
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "50%"
)
```
# gargle[![CRAN status](https://www.r-pkg.org/badges/version/gargle)](https://cran.r-project.org/package=gargle)
[![Codecov test coverage](https://codecov.io/gh/r-lib/gargle/branch/main/graph/badge.svg)](https://app.codecov.io/gh/r-lib/gargle?branch=main)
[![R-CMD-check](https://github.com/r-lib/gargle/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/r-lib/gargle/actions/workflows/R-CMD-check.yaml)The goal of gargle is to take some of the agonizing pain out of working with Google APIs. This includes functions and classes for handling common credential types and for preparing, executing, and processing HTTP requests.
The target user of gargle is an *R package author* who is wrapping one of the ~250 Google APIs listed in the [APIs Explorer](https://developers.google.com/apis-explorer). gargle aims to play roughly the same role as [Google's official client libraries](https://developers.google.com/api-client-library/), but for R. gargle may also be useful to useRs making direct calls to Google APIs, who are prepared to navigate the details of low-level API access.
gargle's functionality falls into two main domains:
* **Auth.** The `token_fetch()` function calls a series of concrete
credential-fetching functions to obtain a valid access token (or it quietly
dies trying).
- This covers explicit service accounts, application default credentials,
Google Compute Engine, (experimentally) workload identity federation, and
the standard OAuth2 browser flow.
- gargle offers the `Gargle2.0` class, which extends `httr::Token2.0`. It is
the default class for user OAuth 2.0 credentials. There are two main
differences from `httr::Token2.0`: greater emphasis on the user's email
(e.g. Google identity) and default token caching is at the user level.
* **Requests and responses**. A family of functions helps to prepare HTTP
requests, (possibly with reference to an API spec derived from a Discovery
Document), make requests, and process the response.
See the [articles](https://gargle.r-lib.org/articles/) for holistic advice on how to use gargle.## Installation
You can install the released version of gargle from [CRAN](https://CRAN.R-project.org) with:
```{r eval = FALSE}
install.packages("gargle")
```And the development version from [GitHub](https://github.com/) with:
```{r eval = FALSE}
# install.packages("pak")
pak::pak("r-lib/gargle")
```
## Basic usagegargle is a low-level package and does not do anything visibly exciting on its own.
But here's a bit of usage in an interactive scenario where a user confirms they want to use a specific Google identity and loads an OAuth2 token.```{r eval = FALSE}
library(gargle)token <- token_fetch()
#> The gargle package is requesting access to your Google account.
#> Enter '1' to start a new auth process or select a pre-authorized account.
#> 1: Send me to the browser for a new auth process.
#> 2: [email protected]
#> 3: [email protected]
#> Selection: 2token
#> ── ─────────────────────────────────────────────────────
#> oauth_endpoint: google
#> app: gargle-clio
#> email: [email protected]
#> scopes: ...userinfo.email
#> credentials: access_token, expires_in, refresh_token, scope, token_type, id_token
```Here's an example of using request and response helpers to make a one-off request to the [Web Fonts Developer API](https://developers.google.com/fonts/docs/developer_api).
We show the most popular web font families served by Google Fonts.```{r}
library(gargle)req <- request_build(
method = "GET",
path = "webfonts/v1/webfonts",
params = list(
sort = "popularity"
),
key = gargle_api_key(),
base_url = "https://www.googleapis.com"
)
resp <- request_make(req)
out <- response_process(resp)out <- out[["items"]][1:8]
sort(vapply(out, function(x) x[["family"]], character(1)))
```Please note that the 'gargle' project is released with a [Contributor Code of Conduct](https://gargle.r-lib.org/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms.
[Privacy policy](https://www.tidyverse.org/google_privacy_policy)