【发布时间】:2016-04-26 11:35:24
【问题描述】:
我正在使用 Google Api Client 连接到 Drive Api,如下所示:
apiClient = new GoogleApiClient.Builder(this)
.addApi(Drive.API)
.addScope(Drive.SCOPE_FILE)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.build();
效果很好。
我们的用户现在想查看正在使用哪个帐户(用户名),是否可以使用此 api 或者我应该添加更多,例如 G+?最好的当然是不添加。
【问题讨论】:
标签: android google-api google-drive-api