I used the classic way to connect but it's not working:

       PicasawebService myService = new PicasawebService("Download
Album Links");
       myService.setUserCredentials(USER, PASSWORD);

Because in my local network it is a proxy I try different things like:

                System.setProperty("proxySet", "true");
                System.setProperty("https.proxyHost", "192.168.1.29");
                System.setProperty("https.proxyPort", "8080");
                System.setProperty("https.proxyUser", "userProxy");
                System.setProperty("https.proxyPassword", "passProxy");

or

                String base64encodedCredentials = "Basic " +
Base64.encode("userProxy:passProxy".getBytes());
                myService.getRequestFactory().setPrivateHeader("Proxy-
Authorization", base64encodedCredentials);
                myService.setUserCredentials(USER, PASSWORD);

I understand that Google APIs offers support for this king of
connection, but I did'n find anything about it.


-- 
You received this message because you are subscribed to the Google Groups 
"Google Picasa Web Albums API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-picasa-data-api?hl=en.

Reply via email to