Skip to content

Instantly share code, notes, and snippets.

@salrashid123
Created October 16, 2017 13:33
Show Gist options
  • Save salrashid123/d9ed60ed00d89f2dd9db53763e08d62d to your computer and use it in GitHub Desktop.
Save salrashid123/d9ed60ed00d89f2dd9db53763e08d62d to your computer and use it in GitHub Desktop.
Proxy-JavaGoogleCloudAuth.java
System.setProperty("https.proxyHost", "localhost");
System.setProperty("https.proxyPort", "3128");
Authenticator.setDefault(
new Authenticator() {
@Override
public PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(
"user1", "user1".toCharArray());
}
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment