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
I use the redmine backend but not autenticate, the code to get working is:
auth_handler = urllib2.HTTPBasicAuthHandler() auth_handler.add_password(realm='Redmine API', uri=<uri_of_request>, user=self.backend_user, passwd=self.backend_password) opener = urllib2.build_opener(auth_handler) urllib2.install_opener(opener)
That's work for me, and the options to put the API Key i dont see into the code, is coded already???
The text was updated successfully, but these errors were encountered:
Thanks for the snippet @lfdominguez, you're right on Redmine authentication does not work. I will try to integrate this as soon as possible.
Sorry, something went wrong.
And the authentication with API Key??
sduenas
No branches or pull requests
I use the redmine backend but not autenticate, the code to get working is:
That's work for me, and the options to put the API Key i dont see into the code, is coded already???
The text was updated successfully, but these errors were encountered: