Skip to content

Commit

Permalink
Doc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
gronerik committed May 20, 2024
1 parent 7c8fbbe commit 17e3df1
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 10 deletions.
6 changes: 3 additions & 3 deletions CRAN-SUBMISSION
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Version: 2.0.1
Date: 2023-04-10 19:37:07 UTC
SHA: 69a4090864f085a335539d7f7ce9ba0c11861c75
Version: 2.0.2
Date: 2024-05-17 12:53:12 UTC
SHA: 7c8fbbe07aae422979a7d7b684c970967d12bc52
1 change: 0 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ Imports:
rlang,
utils
Suggests:
bigQueryR,
covr,
devtools (>= 1.12.0),
formatR (>= 1.4),
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Auto-build libraries for Google APIs with OAuth2 for both local and Shiny app us

Get more details at the [googleAuthR website](https://code.markedmondson.me/googleAuthR/)

The [`googleAuthRverse`](https://googleauthrverse.slack.com) Slack team has been setup for support for using `googleAuthR` and the libraries it helps create. Sign up via this [Google form](https://goo.gl/forms/d541yrJoDFMrrSJp1) to get access.
The [`googleAuthRverse`](https://googleauthrverse.slack.com/) Slack team has been setup for support for using `googleAuthR` and the libraries it helps create. Sign up via this [Google form](https://goo.gl/forms/d541yrJoDFMrrSJp1) to get access.

## R Google API libraries using googleAuthR

Expand All @@ -47,7 +47,7 @@ The below libraries are all cross-compatible as they use `googleAuthR` for authe
* [googleComputeEngineR](https://cloudyr.github.io/googleComputeEngineR/) - Google Compute Engine VMs API
* [searchConsoleR](https://code.markedmondson.me/searchConsoleR/) - Search Console API
* [bigQueryR](https://code.markedmondson.me/bigQueryR/) - BigQuery API. Part of the cloudyr project.
* [googleAnalyticsR](https://code.markedmondson.me/googleAnalyticsR/) - Google Analytics API
* [googleAnalyticsR](https://github.com/8-bit-sheep/googleAnalyticsR/) - Google Analytics API
* [googleTagManagerR](https://github.com/IronistM/googleTagManageR) - Google Tag Manager API by IronistM
* [googleID](https://github.com/MarkEdmondson1234/googleID) - Simple user info from G+ API for Shiny app authentication flows.
* [googleCloudStorageR](https://code.markedmondson.me/googleCloudStorageR/) - Google Cloud Storage API
Expand All @@ -63,7 +63,7 @@ Feel free to add your own via email or a pull request if you have used googleAut

* Jenny Bryan and her work on the [googlesheets](https://github.com/jennybc/googlesheets) package that this work derives from.
* Hadley Wickham for [httr's OAuth2](https://github.com/r-lib/httr) excellence
* RStudio team for [Shiny](https://shiny.rstudio.com/)
* RStudio team for [Shiny](https://shiny.posit.co/)
* [Johann de Boer](https://github.com/jdeboer) for some code contributions.

## Install
Expand Down
4 changes: 2 additions & 2 deletions vignettes/google-authentication-types.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ If creating your own library you can choose to supply some or all of the above t

## googleAuthR > 1.0.0

Authentication cache tokens are kept at a global level on your computer. When you authenticate the first time with a new client.id, scope or email then you will go through the authentication process in the browser, however the next time it wil be cached and be a lot quicker.
Authentication cache tokens are kept at a global level on your computer. When you authenticate the first time with a new client_id, scope or email then you will go through the authentication process in the browser, however the next time it wil be cached and be a lot quicker.

```r
# switching between auth scopes
Expand Down Expand Up @@ -273,7 +273,7 @@ shinyApp(gar_shiny_ui(ui, login_ui = gar_shiny_login_ui), server)

This module is suitable if you don't need to authenticate APIs in your app, you just would like a login. You can then reach the user email, id, name or avatar to decide which content you want to show with durther logic within your Shiny app.

You only need to set the `client.id` for this login, as no secrets are being created.
You only need to set the `client_id` for this login, as no secrets are being created.

```r
library(shiny)
Expand Down
2 changes: 1 addition & 1 deletion vignettes/troubleshooting.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This document hopefully helps troubleshoot authentication troubles. If anything

### Setting your own client ID

[Donal Phipps](http://donalphipps.co.uk/) has a helpful video on how to set up your own Google Project client ID and secret via [this link](https://www.youtube.com/watch?v=4B88dRbwNfc) - its for `googleAnalyticsR` but applies for all `googleAuthR` packages.
[Donal Phipps](https://donalphipps.co.uk/) has a helpful video on how to set up your own Google Project client ID and secret via [this link](https://www.youtube.com/watch?v=4B88dRbwNfc) - its for `googleAnalyticsR` but applies for all `googleAuthR` packages.

<iframe width="560" height="315" src="http://www.youtube.com/embed/4B88dRbwNfc?rel=0" frameborder="0" allowfullscreen></iframe>

Expand Down

0 comments on commit 17e3df1

Please sign in to comment.