通过这个基于 Google Drive SDK 的示例,我能够将图片上传到我的 Google Drive。我现在的问题是此代码间接调用了授权请求(显示应用程序具有哪些权限的活动):
private static Drive service;
try
{
// ...
File file = service.files().insert(body, mediaContent).execute();
//...
}
catch (UserRecoverableAuthIOException e)
{
startActivityForResult(e.getIntent(), REQUEST_AUTHORIZATION);
}
我想在不创建异常的情况下显示此活动。我可以从服务对象的方法中调用此活动吗?