We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A need to specify username and a password to the the HTTP proxy of my company.
But this plugin don't take into account the username and the password specified in the proxy URI: https://username:password@ip:port
https://username:password@ip:port
This code should be included in the SlackClient.send(SlackMessage message) method:
Authenticator.setDefault(new Authenticator() { @Override protected PasswordAuthentication getPasswordAuthentication() { return new PasswordAuthentication(httpProxyUsername, httpProxyPassword.toCharArray()); } });
The user and password being included in the user-info of the URI. See https://docs.oracle.com/javase/7/docs/api/java/net/URI.html#getUserInfo()
The text was updated successfully, but these errors were encountered:
a PR that includes this is very welcomed.
Sorry, something went wrong.
No branches or pull requests
A need to specify username and a password to the the HTTP proxy of my company.
But this plugin don't take into account the username and the password specified in the proxy URI:
https://username:password@ip:port
This code should be included in the SlackClient.send(SlackMessage message) method:
The user and password being included in the user-info of the URI.
See https://docs.oracle.com/javase/7/docs/api/java/net/URI.html#getUserInfo()
The text was updated successfully, but these errors were encountered: