これは、Pythonを使用してサイトにログインするための私のコードです:
import urllib2, cookielib
cookie_support= urllib2.HTTPCookieProcessor(cookielib.CookieJar())
opener = urllib2.build_opener(cookie_support, urllib2.HTTPHandler)
urllib2.install_opener(opener)
content = urllib2.urlopen('http://192.168.1.200/order/index.php?op=Login&ac=login&userName=%E8%B5%B5%E6%B1%9F%E6%98%8E&userPwd=123').read()
print content
それが表示されます:
{"title":"login error","body":"username or password error","data":{"status":1}}
しかし、ユーザー名とパスワードは正しいです、私はFirefoxを使用してこのサイトにログインできます、
それで、なにかお手伝いできますか 、
ありがとう