與 gs4_auth()
相比,這些函數可以對身份驗證配置提供更多控製和可見性。 gs4_auth_configure()
讓用戶指定自己的:
-
OAuth客戶端,在獲取用戶token時使用。
-
API key 。如果通過
gs4_deauth()
取消對 googlesheets4 的授權,則所有請求都將使用 API key 而不是令牌發送。
見vignette("get-api-credentials", package = "gargle")
了解更多。如果用戶未配置這些設置,則使用內部默認值。
gs4_oauth_client()
和 gs4_api_key()
分別檢索當前配置的 OAuth 客戶端和 API key 。
參數
- client
-
一個 Google OAuth 客戶端,大概是通過
gargle::gargle_oauth_client_from_json()
構建的。但請注意,最好使用path
參數通過 JSON 指定客戶端。 - path
-
從 Google Cloud Console 下載的 JSON,包含客戶端 ID 和 key ,采用
jsonlite::fromJSON()
的txt
參數支持的形式之一(通常是文件路徑或 JSON 字符串)。 - api_key
-
API key 。
- app
值
-
gs4_auth_configure()
:R6 類 gargle::AuthState 的對象,不可見。 -
gs4_oauth_client()
:當前用戶配置的 OAuth 客戶端。 -
gs4_api_key()
:當前用戶配置的 API key 。
也可以看看
其他驗證函數:gs4_auth()
、gs4_deauth()
、gs4_scopes()
例子
# see and store the current user-configured OAuth client (probably `NULL`)
(original_client <- gs4_oauth_client())
#> NULL
# see and store the current user-configured API key (probably `NULL`)
(original_api_key <- gs4_api_key())
#> NULL
# the preferred way to configure your own client is via a JSON file
# downloaded from Google Developers Console
# this example JSON is indicative, but fake
path_to_json <- system.file(
"extdata", "client_secret_installed.googleusercontent.com.json",
package = "gargle"
)
gs4_auth_configure(path = path_to_json)
# this is also obviously a fake API key
gs4_auth_configure(api_key = "the_key_I_got_for_a_google_API")
# confirm the changes
gs4_oauth_client()
#> <gargle_oauth_client>
#> name: a_project_d1c5a8066d2cbe48e8d94514dd286163
#> id: abc.apps.googleusercontent.com
#> secret: <REDACTED>
#> type: installed
#> redirect_uris: http://localhost
gs4_api_key()
#> [1] "the_key_I_got_for_a_google_API"
# restore original auth config
gs4_auth_configure(client = original_client, api_key = original_api_key)
相關用法
- R googlesheets4 gs4_auth 授權 googlesheets4
- R googlesheets4 gs4_token 生成配置的令牌
- R googlesheets4 gs4_formula Google 表格公式類
- R googlesheets4 gs4_random 生成隨機工作表名稱
- R googlesheets4 gs4_user 獲取當前用戶的信息
- R googlesheets4 gs4_fodder 創建有用的電子表格填充程序
- R googlesheets4 gs4_endpoints 列出工作表端點
- R googlesheets4 gs4_find 查找 Google 表格
- R googlesheets4 gs4_examples 示例表
- R googlesheets4 gs4_get 獲取工作表元數據
- R googlesheets4 gs4_scopes 特定於 Sheets API 的生成範圍
- R googlesheets4 gs4_has_token 手上有令牌嗎?
- R googlesheets4 gs4_create 創建一個新工作表
- R googlesheets4 gs4_browse 在網絡瀏覽器中訪問工作表
- R googlesheets4 gs4_deauth 暫停授權
- R googlesheets4 googlesheets4-configuration 穀歌表4配置
- R googlesheets4 sheet_rename 重命名(工作)表
- R googlesheets4 sheet_delete 刪除一張或多張(工作)表
- R googlesheets4 range_autofit 自動調整列或行以適應數據
- R googlesheets4 range_speedread 將工作表讀取為 CSV
- R googlesheets4 range_read_cells 從工作表中讀取單元格
- R googlesheets4 spread_sheet 將單元格 DataFrame 展開為電子表格形狀
- R googlesheets4 sheet_properties 獲取有關(工作)表的數據
- R googlesheets4 sheets_id Sheets_id 類
- R googlesheets4 sheet_append 將行附加到工作表
注:本文由純淨天空篩選整理自Jennifer Bryan等大神的英文原創作品 Edit and view auth configuration。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。