I am writing a simple imgur library in python to use in an application of mine. In order to use the Authenticated API of imgur I am using the python-oauth2 library and at the moment all methods are working perfect, but the only problem are the methods with method DELETE. When sending request with method="DELETE" I get an 401 error code, at the same time I can access all other resources.
Here is how I send the requests:
def _submit_request(self, url, method, params=""):
"""
Submits a request to the client with given
URL, method and parameters
on success returns result
"""
exceptions = {
'400': ParameterMissingException,
'401': UserAuthenticationException,
'403': ForbiddenException,
'404': NotSupportedActionException,
'505': InternalErrorException,
}
resp, result = self.client.request(url, method, params)
if resp['status'] in exceptions:
raise exceptions[resp['status']]
return result
The whole library can be found at github.
How can I fix this problem, and is it a problem in my implementation or it is a bug in oauth2 or httplib? Using the suggested at api.imgur.com option with adding &_method=delete to the request URL unfortunately doesn't work.
Thanks for all suggestions.