私はこのコードを持っています:
import requests
url = 'https://mobile.twitter.com/session/new'
payload = {
'username': 'username',
'password': 'password',
}
with requests.Session() as c:
c.post(url, data=payload)
r = c.get('https://mobile.twitter.com/account')
print 'username' in r.content
目標は、Twitter モバイルにログインすることです (API があることは知っていますが、これはただの楽しみです) ... mechanize を使用して同様のスクリプトを既に作成しており、動作します!
コードの何が問題になっていますか? ありがとう