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

如何成功运行Google Drive API的“Java Quickstart”示例?

益英逸
2023-03-14

我按照Google的Java快速入门指南,尝试开发了一个Google Drive文件的搜索功能。在我执行< code>gradle -q run或< code>gradle run命令后,它打开一个网页并显示“错误:redirect_uri_mismatch”消息。

这是代码:

package main.java;

import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.List;

import com.google.api.client.auth.oauth2.Credential;
import com.google.api.client.googleapis.auth.oauth2.GoogleAuthorizationCodeFlow;
import com.google.api.client.googleapis.auth.oauth2.GoogleClientSecrets;
import com.google.api.client.googleapis.javanet.GoogleNetHttpTransport;
import com.google.api.client.http.HttpTransport;
import com.google.api.client.json.JsonFactory;
import com.google.api.client.json.jackson2.JacksonFactory;
import com.google.api.client.util.store.FileDataStoreFactory;
import com.google.api.services.drive.Drive;
import com.google.api.services.drive.DriveScopes;
import com.google.api.services.drive.model.File;
import com.google.api.services.drive.model.FileList;

public class Quickstart {
    /** Application name. */
    private static final String APPLICATION_NAME = "Drive API Java Quickstart";

    /** Directory to store user credentials for this application. */
    private static final java.io.File DATA_STORE_DIR = new java.io.File(System.getProperty("user.home"),
            ".credentials/drive-java-quickstart");

    /** Global instance of the {@link FileDataStoreFactory}. */
    private static FileDataStoreFactory DATA_STORE_FACTORY;

    /** Global instance of the JSON factory. */
    private static final JsonFactory JSON_FACTORY = JacksonFactory.getDefaultInstance();

    /** Global instance of the HTTP transport. */
    private static HttpTransport HTTP_TRANSPORT;

    /**
     * Global instance of the scopes required by this quickstart.
     *
     * If modifying these scopes, delete your previously saved credentials at
     * ~/.credentials/drive-java-quickstart
     */
    private static final List<String> SCOPES = Arrays.asList(DriveScopes.DRIVE_METADATA_READONLY);

    static {
        try {
            HTTP_TRANSPORT = GoogleNetHttpTransport.newTrustedTransport();
            DATA_STORE_FACTORY = new FileDataStoreFactory(DATA_STORE_DIR);
        } catch (Throwable t) {
            t.printStackTrace();
            System.exit(1);
        }
    }

    /**
     * Creates an authorized Credential object.
     * 
     * @return an authorized Credential object.
     * @throws IOException
     */
    public static Credential authorize() throws IOException {
        // Load client secrets.
        InputStream in = Quickstart.class.getResourceAsStream("/client_secret.json");
        GoogleClientSecrets clientSecrets = GoogleClientSecrets.load(JSON_FACTORY, new InputStreamReader(in));

        // Build flow and trigger user authorization request.
        GoogleAuthorizationCodeFlow flow = new GoogleAuthorizationCodeFlow.Builder(HTTP_TRANSPORT, JSON_FACTORY,
                clientSecrets, SCOPES).setDataStoreFactory(DATA_STORE_FACTORY).setAccessType("offline").build();
        Credential credential = new AuthorizationCodeInstalledApp(flow, new LocalServerReceiver()).authorize("user");
        System.out.println("Credentials saved to " + DATA_STORE_DIR.getAbsolutePath());
        return credential;
    }

    /**
     * Build and return an authorized Drive client service.
     * 
     * @return an authorized Drive client service
     * @throws IOException
     */
    public static Drive getDriveService() throws IOException {
        Credential credential = authorize();
        return new Drive.Builder(HTTP_TRANSPORT, JSON_FACTORY, credential).setApplicationName(APPLICATION_NAME).build();
    }

    public static void main(String[] args) throws IOException {
        // Build a new authorized API client service.
        Drive service = getDriveService();

        // Print the names and IDs for up to 10 files.
        FileList result = service.files().list().setPageSize(10).setFields("nextPageToken, files(id, name)").execute();
        List<File> files = result.getFiles();
        if (files == null || files.size() == 0) {
            System.out.println("No files found.");
        } else {
            System.out.println("Files:");
            for (File file : files) {
                System.out.printf("%s (%s)\n", file.getName(), file.getId());
            }
        }
    }
}

开发环境:

生成文件:

apply plugin: 'java'
apply plugin: 'application'

mainClassName = 'Quickstart'
sourceCompatibility = 1.7
targetCompatibility = 1.7
version = '1.0'

repositories {
    mavenCentral()
}

dependencies {
    compile 'com.google.api-client:google-api-client:1.22.0'
    compile 'com.google.oauth-client:google-oauth-client-jetty:1.22.0'
    compile 'com.google.apis:google-api-services-drive:v3-rev68-1.22.0' 
}

我应该怎么做才能成功运行gradle-q-rungradle-run命令?如何正确配置“Redirect_URI”?

共有1个答案

和和煦
2023-03-14

基于此线程,如果您使用的是Gradle Wrapper(Android Studio中的推荐选项),您可以通过从项目根文件夹中的命令行运行< code > grad Lew compile debug-stacktrace 来启用stack trace。如果您没有使用gradle包装器,您可以使用< code > gradle compile debug-stack trace 来代替(大概是这样)。有了这个,你就可以知道自己错误的根源了。

你并不需要使用 --stacktrace 运行,但是,从命令行运行 gradlew compileDebug 本身应该会告诉您错误的位置。

您也可以尝试通过以下菜单项清理项目:project

附加:

如何正确配置“Redirect_URI”?

你可以检查这个SO线程:如何在谷歌开发者控制台中设置redirect_uri?。

重定向URI是一个仅由正在进行oAuth2身份验证的Web应用程序使用的对象;因此,当您创建一个新的客户端ID时,选择“Web应用程序”作为ID类型,将会有一个文本区域,您可以在其中输入所有允许的重定向URI(这些网页将由您编码,并且需要执行执行oAuth2票证验证的功能)。

如果您的应用程序不是web应用程序,则选择“已安装的应用程序”作为类型,您将获得一个可在Android/iOS/桌面应用程序中使用的密钥。但是,该密钥在web应用程序中根本不可用。

如果您的web应用程序不需要写入任何数据或上载任何文件,您可以创建一个公共API密钥,只需将其作为参数包含在请求中。

服务帐户(如上图所示)与YouTubeAPI不兼容。

 类似资料:
  • IECapabilities.SetCapability(InternetExplorerDriver.Introduce_Flakiness_By_Ignoling_Security_Domains,true); //WebDriver driver=new InternetExplorerDriver(ieCapabilities); driver.findElement(by.id(“use

  • 我想运行google_maps_flutter的示例。因此,我从https://github.com/flutter/plugins下载了代码,并使用android Studio打开/plugins/tree/master/packages/google_maps_flutter/google_maps_flutter。 在readme.md文件中,它说 pubspec.yaml第11行第3列错误

  • 问题内容: 我的问题与jQuery方法有关。我无法使用成功参数。 这有效: 这不是: 在第一种情况下,我得到一个JavaScript警报窗口,该窗口使我知道调用的函数正在工作。我在第二个代码块中所做的所有更改都放在了。 这样做的目的是验证$ .ajax是否正在运行,以便在$ .ajax成功运行时可以在其中放置一些实际有用的代码。 问题答案: 在第二个示例中,除非您从服务器成功回电,否则将不会发生任

  • 我有一个这样的运行测试类。 我有4个cucumber功能文件在src/test/资源/功能。当我尝试运行此测试(4个cucumber功能)时,我得到了错误: 我试着给Cucumber选项一个完整的路径,但效果不太好。有人能帮我吗?非常感谢。

  • 问题内容: 我从https://github.com/jaliss/securesocial/tree/master下载了securesocial- master.zip 1,解压后更改目录 2.运行激活器 错误消息: 问题答案: 根据您输入的信息: 光盘到 C:\ Users \ ddd \ play \ securesocial-master 2.从根目录运行激活器 C:\ Users \ d