发布请求数据

时间:2016-09-12 13:36:08

标签: python python-3.x module python-requests

我正在尝试使用Python发布请求以注册帐户。

它没有创建帐户。

任何帮助都会很棒!

必须接受用户的电子邮件和密码并确认其密码。

import requests

with requests.Session() as c:
    url="http://icebithosting.com/register.php"
    EMAIL="charliep1551@gmail.com"
    PASSWORD = "test"
    c.get(url)
    login_data= dict(username=EMAIL,password=PASSWORD,confirm=PASSWORD)
    c.post(url, data=login_data,)
    page=c.get("http://icebithosting.com/")
    print (page.content)

1 个答案:

答案 0 :(得分:-1)

您的表单文件名不正确,应该是:

email:'foo@bar.com'
password:'bar'
confirm_password:'bar' # confirm_password

如果您在Chrome工具中监控请求,则可以看到:

enter image description here