The lightest(最轻量级)Google Drive REST API query/response?

The lightest (most lightweight) Google Drive REST API query/response?

在 Android 应用程序中初始化 REST Google Drive API 时,我需要 'poke' 服务器生成

UserRecoverableAuthIOException

为了尽量减少网络流量,我正在搜索最多 'lightweight' 会产生此类异常的请求。目前,我使用以下结构:

com.google.api.services.drive.Drive svc;
svc.files().get("root").setFields("title").execute();

基本上是拉'root'的名字。

这是完成这项工作的最低流量吗?

产生的流量可以忽略不计。 根本算不了什么。

除非是出于学术目的,否则进一步优化速度不会有任何收获。有一点它不再成为瓶颈。

所以是的,这很可能是生成 UserRecoverableAuthIOException 的最简单方法