當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R googledrive drive_deauth 暫停授權


將 googledrive 置於取消授權狀態。 googledrive 將發送 API key ,而不是發送令牌。這可用於訪問無需 Google 登錄的公共資源。這對於在非交互式設置中使用 googledrive 發出不需要令牌的請求非常方便。它將阻止嘗試在瀏覽器中以交互方式獲取令牌。用戶可以通過 drive_auth_configure() 配置自己的 API key ,並通過 drive_api_key() 檢索該 key 。如果沒有用戶配置的 key ,則使用內置的默認 key 。

用法

drive_deauth()

也可以看看

其他驗證函數:drive_auth_configure()drive_auth()drive_scopes()

例子

if (FALSE) { # rlang::is_interactive()
drive_deauth()
drive_user()

# in a deauth'ed state, we can still get metadata on a world-readable file
public_file <- drive_example_remote("chicken.csv")
public_file
# we can still download it too
drive_download(public_file)
}
源代碼:R/drive_auth.R

相關用法


注:本文由純淨天空篩選整理自Jennifer Bryan等大神的英文原創作品 Suspend authorization。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。