I have an issue: I should use proxy to get connection with google
service, but have no idea where to add it in the code :
URL feedUrl = new URL(somequery);
GoogleService myService = new GoogleService("blogger",
"D&A-program-1");
myService.setUserCredentials("user", "password");
Feed myFeed = myService.getFeed(feedUrl, Feed.class);
ussually i used something like this:
.......
URL newUrl = new URL(somequery);
newUrl.openConnection(proxy);
.......
anyway I can try to refactor the API library, but it's the worse case.
What can you advice?
Thanks.