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.

link|improve this question
Did you ever get this to work? I'm having trouble with PUT and DELETE, both of which return a 401 – Gevious Jan 18 at 11:33
Nope ... still not working, but I didn't have the time to work on the application and library lately – VKolev Jan 20 at 13:05
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.