Skip to content

Commit

Permalink
fix _http_post
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelliao committed Dec 4, 2013
1 parent ed2712f commit 8f7201a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snspy.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ def request_access_token(self, code, redirect_uri=None):

def refresh_token(self, refresh_token):
req_str = '%s%s' % (self.auth_url, 'access_token')
r = _http_post(req_str, \
r = _http('POST', req_str, \
client_id = self.client_id, \
client_secret = self.client_secret, \
refresh_token = refresh_token, \
Expand Down

0 comments on commit 8f7201a

Please sign in to comment.