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???
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???