代理背后的Google Drive API Java客户端 [英] Google Drive API Java client behind proxy

查看:64
本文介绍了代理背后的Google Drive API Java客户端的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用 Drive API v2 .但是,尝试在我的代码中执行OAuth2身份验证时遇到错误.我认为这可能是一个代理问题,我试图通过在代码中设置代理来解决此问题,但这没有帮助.

I am trying to write a java client for Drive API using Drive API v2. However I am getting an error while trying to perform OAuth2 Authentication in my code. I think this might be a proxy issue, which I tried to resolve by setting proxy in my code, but it did not help.

是我所指的指南编写我的程序.

This is the guide which I referred to, for writing my program.

这是我的代码的片段:

public static Credential authorize() throws IOException {
            // Load client secrets.
            Credential credential = null;

            try{

            GoogleClientSecrets clientSecrets =
                GoogleClientSecrets.load(JSON_FACTORY, new InputStreamReader(new FileInputStream("client_secret.json")));

            // Build flow and trigger user authorization request.

            GoogleAuthorizationCodeFlow flow = new GoogleAuthorizationCodeFlow.Builder(
                      HTTP_TRANSPORT, JSON_FACTORY, clientSecrets,
                      Collections.singleton(DriveScopes.DRIVE)).setDataStoreFactory(
                      DATA_STORE_FACTORY).build();

            credential = new AuthorizationCodeInstalledApp(
                flow, new LocalServerReceiver()).authorize("user");

            System.out.println(
                    "Credentials saved to " + DATA_STORE_DIR.getAbsolutePath());
            }catch(Exception e){
                e.printStackTrace(); System.exit(0);
                }
            return credential;

        }

        /**
         * Build and return an authorized Drive client service.
         * @return an authorized Drive client service
         * @throws IOException
         */
        public static Drive getDriveService() throws IOException {
            System.setProperty("http.proxyHost","10.3.100.207") ;
            System.setProperty("http.proxyPort", "8080") ;

            Credential credential = authorize();
            return new Drive.Builder(
                    HTTP_TRANSPORT, JSON_FACTORY, credential)
                    .setApplicationName(APPLICATION_NAME)
                    .build();
        }

这是堆栈跟踪:

2016-05-19 18:41:54.989:INFO::Logging to STDERR via org.mortbay.log.StdErrLog
2016-05-19 18:41:54.990:INFO::jetty-6.1.26
2016-05-19 18:41:55.001:INFO::Started SocketConnector@localhost:51307
Please open the following address in your browser:
  https://accounts.google.com/o/oauth2/auth?client_id=904439877486-uqiqmstss1bdcmhabt0gom905jo3hqsv.apps.googleusercontent.com&redirect_uri=http://localhost:51307/Callback&response_type=code&scope=https://www.googleapis.com/auth/drive
2016-05-19 18:42:28.496:INFO::Stopped SocketConnector@localhost:51307
java.net.UnknownHostException: accounts.google.com
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:184)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
at sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:668)
at sun.net.NetworkClient.doConnect(NetworkClient.java:175)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:432)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:527)
at sun.net.www.protocol.https.HttpsClient.<init>(HttpsClient.java:264)
at sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:367)
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1105)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:999)
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177)
at sun.net.www.protocol.http.HttpURLConnection.getOutputStream0(HttpURLConnection.java:1283)
at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:1258)
at sun.net.www.protocol.https.HttpsURLConnectionImpl.getOutputStream(HttpsURLConnectionImpl.java:250)
at com.google.api.client.http.javanet.NetHttpRequest.execute(NetHttpRequest.java:77)
at com.google.api.client.http.HttpRequest.execute(HttpRequest.java:981)
at com.google.api.client.auth.oauth2.TokenRequest.executeUnparsed(TokenRequest.java:283)
at com.google.api.client.googleapis.auth.oauth2.GoogleAuthorizationCodeTokenRequest.execute(GoogleAuthorizationCodeTokenRequest.java:158)
at com.google.api.client.googleapis.auth.oauth2.GoogleAuthorizationCodeTokenRequest.execute(GoogleAuthorizationCodeTokenRequest.java:79)
at com.google.api.client.extensions.java6.auth.oauth2.AuthorizationCodeInstalledApp.authorize(AuthorizationCodeInstalledApp.java:82)
at DriveAPITest.authorize(DriveAPITest.java:84)
at DriveAPITest.getDriveService(DriveAPITest.java:104)
at DriveAPITest.main(DriveAPITest.java:116)
Exception in thread "main" java.net.UnknownHostException: www.googleapis.com
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:184)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:589)
at sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:668)
at sun.net.NetworkClient.doConnect(NetworkClient.java:175)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:432)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:527)
at sun.net.www.protocol.https.HttpsClient.<init>(HttpsClient.java:264)
at sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:367)
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1105)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:999)
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177)
at sun.net.www.protocol.https.HttpsURLConnectionImpl.connect(HttpsURLConnectionImpl.java:153)
at com.google.api.client.http.javanet.NetHttpRequest.execute(NetHttpRequest.java:93)
at com.google.api.client.http.HttpRequest.execute(HttpRequest.java:981)
at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.executeUnparsed(AbstractGoogleClientRequest.java:419)
at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.executeUnparsed(AbstractGoogleClientRequest.java:352)
at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.execute(AbstractGoogleClientRequest.java:469)
at DriveAPITest.main(DriveAPITest.java:121)

我打开浏览器的身份验证链接,并在批准权限后显示以下消息:

I opened the authentication link my browser and after approving the permissions it showed the following message :

收到的验证码.您现在可以关闭此窗口...

Received verification code. You may now close this window...

希望有人可以指出我正确的方向.

Hope someone can point me in the right direction.

推荐答案

此文章开始我只是可以通过这种方式设置https代理来访问我的公司代理后面的gsheets

Starting from this article I simply had access to gsheets behind my corporate proxy just setting https proxy in this way

System.setProperty("https.proxyHost", "myipproxyaddress");
System.setProperty("https.proxyPort", "myipproxyport");

HTTP_TRANSPORT = GoogleNetHttpTransport.newTrustedTransport();
DATA_STORE_FACTORY = new FileDataStoreFactory(DATA_STORE_DIR);

,并带有此示例中所述的其余代码如果我仅设置http(不是https)代理,则不起作用

and with the remaining code as described in this example It doesn't work if I only set http (not https) proxy

这篇关于代理背后的Google Drive API Java客户端的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆