Dropbox API: 查找单个共享文件的成员
Dropbox API: find the members of single shared file
我的问题是关于 Dropbox 文件共享 API。
自 2016 年 6 月起,可以与特定组和用户以及外部电子邮件共享文件。到目前为止,特定共享发生在文件夹级别。
有什么方法可以从 API 检索文件共享成员?我在文档中找不到这个答案。
今天,在我的应用程序中,我通过调用 https://api.dropboxapi.com/2/sharing/list_folder_members 为文件夹执行此操作。我从响应中提取组和共享成员帐户 ID。
要获取有关帐户的信息(显示名称和电子邮件地址),我正在使用 ID 调用 https://api.dropboxapi.com/2/users/get_account_batch。
目前无法获取单个共享文件的成员,但我一定会将其作为功能请求传递。
编辑:现在可以通过 /list_file_members:
https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_file_members
https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_file_members-continue
https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_file_members-batch
我的问题是关于 Dropbox 文件共享 API。
自 2016 年 6 月起,可以与特定组和用户以及外部电子邮件共享文件。到目前为止,特定共享发生在文件夹级别。
有什么方法可以从 API 检索文件共享成员?我在文档中找不到这个答案。
今天,在我的应用程序中,我通过调用 https://api.dropboxapi.com/2/sharing/list_folder_members 为文件夹执行此操作。我从响应中提取组和共享成员帐户 ID。 要获取有关帐户的信息(显示名称和电子邮件地址),我正在使用 ID 调用 https://api.dropboxapi.com/2/users/get_account_batch。
目前无法获取单个共享文件的成员,但我一定会将其作为功能请求传递。
编辑:现在可以通过 /list_file_members:
https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_file_members https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_file_members-continue https://www.dropbox.com/developers/documentation/http/documentation#sharing-list_file_members-batch