diff --git a/oauth2/__init__.py b/oauth2/__init__.py index 835270e3..d2c0624a 100644 --- a/oauth2/__init__.py +++ b/oauth2/__init__.py @@ -490,7 +490,8 @@ def sign_request(self, signature_method, consumer, token): # section 4.1.1 "OAuth Consumers MUST NOT include an # oauth_body_hash parameter on requests with form-encoded # request bodies." - self['oauth_body_hash'] = base64.b64encode(sha(self.body).digest()) + # self['oauth_body_hash'] = base64.b64encode(sha(self.body).digest()) + pass if 'oauth_consumer_key' not in self: self['oauth_consumer_key'] = consumer.key