Skip to content

Commit

Permalink
Internet Content: Fix Vimeo grabber
Browse files Browse the repository at this point in the history
Vimeo now requires that oauth_callback is specified.  We set it to out-of-band
since we don't use it.
(cherry picked from commit 0c92bfd)
  • Loading branch information
natanojl committed Jun 1, 2012
1 parent 9129079 commit eaab55b
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -240,7 +240,8 @@ def get_request_token(self):
Requests a request token and return it on success.
"""
oauth_request = oauth.OAuthRequest.from_consumer_and_token(self.consumer,
http_url=self.request_token_url)
http_url=self.request_token_url,
callback="oob")
oauth_request.sign_request(HMAC_SHA1, self.consumer, None)
self.token = self._fetch_token(oauth_request)

Expand Down

0 comments on commit eaab55b

Please sign in to comment.