当前位置: 首页 > 知识库问答 >
问题:

无法下载我的应用程序在谷歌驱动器上创建的文件,但可以获得该文件的元数据

谢涵亮
2023-03-14

我遵循了google drive SDK中提到的所有步骤。我在我的设备上创建了一个示例应用程序(android,运行jelly bean)并能够将文件上传到驱动器上。当试图下载相同的文件时,我能够获得像fileID、fileTitle、fileDownloadURL等元数据,但不能下载内容。我得到401个未经授权的错误。

我的应用程序AUTH范围是AUTH_TOKEN_TYPE=“oauth2:https://www.googleapis.com/AUTH/drive.file”;

我正在执行以下操作以获取OAUTH令牌:

AccountManager am = AccountManager.get(this);
        Bundle options = new Bundle();
        am.getAuthToken(
                mAccount,                               
                AUTH_TOKEN_TYPE,                        
                options,                                
                this,                                   
                new OnTokenAcquired(),                  
                new Handler(){
                    @Override
                    public void handleMessage(Message msg) {
                        invadiateToken();                       
                        super.handleMessage(msg);
                    }
                });  
Drive buildService(final String AuthToken) {
    HttpTransport httpTransport = new NetHttpTransport();
    JacksonFactory jsonFactory = new JacksonFactory();

    Drive.Builder b = new Drive.Builder(httpTransport, jsonFactory, null);
    b.setJsonHttpRequestInitializer(new JsonHttpRequestInitializer() {

        @Override
        public void initialize(JsonHttpRequest request) throws IOException {
            DriveRequest driveRequest = (DriveRequest) request;
            driveRequest.setPrettyPrint(true);
            driveRequest.setKey(API_KEY);
            driveRequest.setOauthToken(AuthToken);
        }
    });

    return b.build();
}
private void uploadLocalFileToDrive(Drive service) throws IOException{

        // File's metadata.
        String mimeType = "text/plain";
        File body = new File();
        body.setTitle("myText.txt");
        body.setDescription("sample app by varun");
        body.setMimeType("text/plain");

        // File's content.
        java.io.File fileContent = new java.io.File(mInternalFilePath);
        FileContent mediaContent = new FileContent(mimeType, fileContent);

        service.files().insert(body, mediaContent).execute();

    }
private void downloadFileFromDrive(Drive service) throws IOException {
        Files.List request;
            request = service.files().list();
            do {
                FileList files = request.execute(); 
                for(File file:files.getItems()){
                    String fieldId = file.getId();
                    String title = file.getTitle();
                    Log.e("MS", "MSV::  Title-->"+title+"  FieldID-->"+fieldId+" DownloadURL-->"+file.getDownloadUrl());
                    if (file.getDownloadUrl() != null && file.getDownloadUrl().length() > 0 ) {
                        GenericUrl url = new GenericUrl(file.getDownloadUrl());
                        HttpResponse resp = service.getRequestFactory().buildGetRequest(url).execute();
                        InputStream isd = resp.getContent();
                        Log.e("MS", "MSV:: FileOutPutStream--->"+getFilesDir().getAbsolutePath()+"/downloaded.txt");

                    } else {
                        Log.e("MS", "MSV:: downloadURL for this file is null");
                    }
                }
                request.setPageToken(files.getNextPageToken());
            } while (request.getPageToken()!=null && request.getPageToken().length()>0);
    }

谁能帮我一下,让我知道我做错了什么???

共有1个答案

靳彦
2023-03-14

这是一个已知的问题,将随着Google Play Services API的发布而得到解决。

由于您的应用程序被授权使用https://www.googleapis.com/auth/drive.file范围,并且下载endpoint不支持?key=查询参数,因此我们的服务器无法知道是哪个项目发出请求(以确保应用程序有权读取该文件的内容)。

同时,我能推荐的唯一解决方案是使用广泛的范围:https://www.googleapis.com/auth/drive。请只在开发您的应用程序和等待Google Play服务发布时使用它。

 类似资料: