What if you want to do auth in a non-default browser? Examples below show requests for Google Chrome or Safari on Mac OS X.
At runtime, the browser is given via the browser
element of options()
.
## [1] "/usr/bin/open"
Two alternatives to change that temporarily for gs_auth()
:
Using just base R facilities.
library(googlesheets)
op <- options(browser = "/usr/bin/open -a '/Applications/Google Chrome.app'")
#op <- options(browser = "/usr/bin/open -a '/Applications/Safari.app'")
gs_auth()
options(op)
Using with withr
package.