0
嗨,我是相當蟒蛇新手。我目前正在嘗試編寫一個爲我登錄到網站的python腳本,然後打開另一個頁面。但它不起作用。無法用python腳本登錄網站?
import requests
from requests import session
payload = {'username': '[email protected]', 'password': 'xxxx'}
url = 'https://login.opendns.com'
with session() as c:
c.post(url, data=payload)
response = c.get('https://dashboard.opendns.com/stats/all/topdomains/today/')
print(response.headers)
print(response.text)
有人可以幫忙嗎?我得到這些錯誤: 「InsecurePlatformWarning」 ,然後給我的登錄頁面本身的HTML。我究竟做錯了什麼? :(