Nothing
# currently just for development
# I'm generally auth'd as:
# * as a service acct (which means I can't look at anything in the browser)
# * with Drive and Sheets scope
# * with googlesheets4 and googledrive
# so this is helpful for quickly granting anyone or myself specifically
# permission to read or write a Sheet I'm fiddling with in the browser or the
# API explorer
#
# Note defaults: role = "reader", type = "anyone"
# --> "anyone with the link" can view
#
# examples:
# gs4_share(ss)
# gs4_share(ss, type = "user", emailAddress = "jane@example.com")
# gs4_share(ss, type = "user", emailAddress = "jane@example.com", role = "writer")
gs4_share <- function(ss,
...,
role = c(
"reader", "commenter", "writer",
"owner", "organizer"
),
type = c("anyone", "user", "group", "domain")) {
check_gs4_email_is_drive_email()
role <- match.arg(role)
type <- match.arg(type)
googledrive::drive_share(
file = as_sheets_id(ss),
role = role,
type = type,
...
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.