Mechanize を使用して Web サイトにログインしようとしています。delさん、訂正ありがとうございます。
import re
import mechanize
login_url = 'login.aspx'
def login(id, username, password):
br = mechanize.Browser()
br.addheaders = [('User-agent', 'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.1) Gecko/2008071615 Fedora/3.0.1-1.fc9 Firefox/3.0.1')]
br.open("login.aspx")
br.select_form(nr=0)
br.form.set_all_readonly(False) # allow us to modify hidden form elements
br["__EVENTTARGET"] = "TransactBtn"
br["AccountID"] = id
br["UserName"] = username
br["Password"] = password
response = br.submit()
print response.geturl()
def redirect(response.geturl())
#i want to get the url of the redirect and submit it to see the main login page
def dostuff()
#i want to do submit more data using the authenticated user.
login('id', 'user', 'pass')
これは正しくログインしましたが、現在、別の送信を求めるリダイレクト ポータルが返されています。
実際にログインしたサイトに戻るにはどうすればよいですか?
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>
</title></head>
<body>
<form name="form1" method="post" action="tmp.aspx" id="form1">
<div>
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwULLTE2MTY2ODcyMjlkZCOgyU+AdP30f85W4DdUIV6LnCqa" />
</div>
<script type="text/javascript">
top.location.href = document.location.href;
document.forms["form1"].submit();
</script>
</form>
</body>
</html>
すでに認証されたユーザー内でデータを送信する方法は?