You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in the file cv_printing_functions.r in the function:
if(is_google_sheets_location){
if(sheet_is_publicly_readable){
# This tells google sheets to not try and authenticate. Note that this will only
# work if your sheet has sharing set to "anyone with link can view"
# googlesheets4::sheets_deauth() https://googlesheets4.tidyverse.org/articles/function-class-names.html
googlesheets4::gs4_deauth()
} else {
# My info is in a public sheet so there's no need to do authentication but if you want
# to use a private sheet, then this is the way you need to do it.
# designate project-specific cache so we can render Rmd without problems
options(gargle_oauth_cache = ".secrets")
in the file cv_printing_functions.r in the function:
if(is_google_sheets_location){
if(sheet_is_publicly_readable){
# This tells google sheets to not try and authenticate. Note that this will only
# work if your sheet has sharing set to "anyone with link can view"
# googlesheets4::sheets_deauth() https://googlesheets4.tidyverse.org/articles/function-class-names.html
googlesheets4::gs4_deauth()
} else {
# My info is in a public sheet so there's no need to do authentication but if you want
# to use a private sheet, then this is the way you need to do it.
# designate project-specific cache so we can render Rmd without problems
options(gargle_oauth_cache = ".secrets")
I wanted to let you know that ddd does not work, so it did not work for me, instead of googlesheets4::sheets_deauth() I found a new version googlesheets4::gs4_deauth() , and that works for me. https://googlesheets4.tidyverse.org/articles/function-class-names.html
The text was updated successfully, but these errors were encountered: