Skip to content

Instantly share code, notes, and snippets.

@stephenLee
Created July 11, 2012 14:51
Show Gist options
  • Save stephenLee/3090906 to your computer and use it in GitHub Desktop.
Save stephenLee/3090906 to your computer and use it in GitHub Desktop.
login renren and weibo mobile websites
import requests
renren_payload={'email': '', 'password':''}
weibo_payload={'uname': '', 'pwd': ''}
renren = requests.post('http://3g.renren.com', data=renren_payload)
weibo = requests.post('http://m.weibo.cn', data=weibo_payload)
print renren.text
print weibo.text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment