-
Notifications
You must be signed in to change notification settings - Fork 253
New issue
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
feat(): add header support for proxy auth #535
base: master
Are you sure you want to change the base?
Conversation
Co-authored-by: So Koide <[email protected]>
@jcmturner Can you take a look at this PR? 🥹 |
I would be interested to test this. How can get access t to this change ? |
@huaraz Thank you for your interest in testing the changes! To get access to this change, you can point your Go module to my fork with the master branch. Here are the steps to do this:
replace github.com/jcmturner/gokrb5/v8 => github.com/sandy2008/gokrb5/v8 master
go get github.com/jcmturner/gokrb5/v8
import "github.com/jcmturner/gokrb5/v8/client" If you encounter any issues or have further questions, please let me know! |
Hi Sandy, I looked a bit more at the code and I tried what you do in setSPNEGOHeaderCommon earlier myself and it does not work for https i.e. CONNECT method. I had to do the following:
or use FYI I have not tried your code yet. Markus |
Hi, let me add the support for this as well :) |
feat(): add header support for proxy auth