显示有关与当前令牌关联的用户的信息。这是 drive_about()
的一个薄包装,它只提取最有用的信息(有关当前用户的信息)并很好地打印它。
参数
- verbose
-
这种对各个 googledrive 函数的逻辑论证已被弃用。要全局禁止 googledrive 消息传递,请使用
options(googledrive_quiet = TRUE)
(默认行为是发出信息性消息)。要以更有限的方式抑制消息传递,请使用帮助程序local_drive_quiet()
或者with_drive_quiet()
.
例子
drive_user()
#> Logged in as:
#> • displayName: googledrive-docs@gargle-169921.iam.gserviceaccount.com
#> • emailAddress: googledrive-docs@gargle-169921.iam.gserviceaccount.com
# more info is returned than is printed
user <- drive_user()
str(user)
#> List of 6
#> $ kind : chr "drive#user"
#> $ displayName : chr "googledrive-docs@gargle-169921.iam.gserviceaccount.com"
#> $ photoLink : chr "https://lh3.googleusercontent.com/a/default-user=s64"
#> $ me : logi TRUE
#> $ permissionId: chr "09204227840243713330"
#> $ emailAddress: chr "googledrive-docs@gargle-169921.iam.gserviceaccount.com"
#> - attr(*, "class")= chr [1:2] "drive_user" "list"
相关用法
- R googledrive drive_upload 上传到新的云端硬盘文件
- R googledrive drive_update 更新现有云端硬盘文件
- R googledrive drive_cp 复制云端硬盘文件
- R googledrive drive_mime_type 查找 MIME 类型
- R googledrive drive_reveal 添加新的云端硬盘文件信息列
- R googledrive drive_rm 从云端硬盘删除文件
- R googledrive drive_id 驱动器 ID 类
- R googledrive drive_auth_configure 编辑和查看身份验证配置
- R googledrive drive_mv 移动云端硬盘文件
- R googledrive drive_put 将新媒体放入云端硬盘文件中
- R googledrive drive_has_token 手上有令牌吗?
- R googledrive drive_rename 重命名云端硬盘文件
- R googledrive drive_trash 将云端硬盘文件移入或移出回收站
- R googledrive drive_share 共享云端硬盘文件
- R googledrive drive_about 获取有关云端硬盘函数的信息
- R googledrive drive_mkdir 创建云端硬盘文件夹
- R googledrive drive_fields 请求部分资源
- R googledrive drive_endpoints 列出驱动器端点
- R googledrive drive_deauth 暂停授权
- R googledrive drive_link 检索云端硬盘文件链接
- R googledrive drive_find 在 Google 云端硬盘上查找文件
- R googledrive drive_create 创建一个新的空白云端硬盘文件
- R googledrive drive_examples 示例文件
- R googledrive drive_browse 在浏览器中访问云端硬盘文件
- R googledrive drive_token 生成配置的令牌
注:本文由纯净天空筛选整理自Jennifer Bryan等大神的英文原创作品 Get info on current user。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。