带有代理的Google Data API客户端库 [英] Google Data API Client Libraries with proxy

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

问题描述

我使用java和gdata API管理日历的数据.但是,只有在我可以直接访问Internet的情况下,它才起作用.就我而言,我必须使用代理.有什么办法可以通过代理管理我的Google日历数据?

I use java and gdata API to manage my Calendar's data. But it works only if I have direct access to the Internet. In my case I have to use proxy. Is there any way to manage my Google calendar's data through the proxy?

我尝试过这种方式:

System.setProperty("http.proxyHost", "myproxy.mydomain.com");
System.setProperty("http.proxyPort", "3128");
URL feedUrl = new URL("http://www.google.com/calendar/feeds/....");
CalendarService myService = new CalendarService("exampleCo-exampleApp-1");      

String encoded = new String(Base64.encodeBase64(new String("proxy_user:proxy_password").getBytes()));
String base64encodedCredentials = "Basic " + encoded;
myService.getRequestFactory().setPrivateHeader("Proxy-Authorization", base64encodedCredentials);

//!!! Exception in this line
myService.setUserCredentials("my_google_accaunt@gmail.com", "my_google_password");

例外:

Exception in thread "main" com.google.gdata.util.AuthenticationException: Error connecting with login URI
    at com.google.gdata.client.GoogleAuthTokenFactory.getAuthToken(GoogleAuthTokenFactory.java:549)
    at com.google.gdata.client.GoogleAuthTokenFactory.setUserCredentials(GoogleAuthTokenFactory.java:397)
    at com.google.gdata.client.GoogleService.setUserCredentials(GoogleService.java:364)
    at com.google.gdata.client.GoogleService.setUserCredentials(GoogleService.java:319)
    at com.google.gdata.client.GoogleService.setUserCredentials(GoogleService.java:303)
    at calendartest.CalendarTest.getCalendarEventsWithProxy(CalendarTest.java:145)
    at calendartest.CalendarTest.main(CalendarTest.java:195)
Caused by: java.net.ConnectException: Connection timed out
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339)
    at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200)
    at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182)
    at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391)
    at java.net.Socket.connect(Socket.java:579)

没有代理,一切正常.

推荐答案

您没有说出使用的是哪种语言,但有关Java和.Net#的说明位于:

You didn't say what language you're using but instructions for Java and .Net# are at:

https://developers.google.com/gdata/articles/proxy_setup

Python的说明可以在以下位置找到:

instructions for Python can be found at:

http://code.google.com/p/gdatacopier/wiki/ProxySupport (这些方法适用于使用gdata-python-client的任何应用程序)

http://code.google.com/p/gdatacopier/wiki/ProxySupport (these should work for any app using the gdata-python-client)

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

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