我開始學習與請求庫的Python和我得到的Facebook的例子。發送表單數據與請求在Python不工作
這是我的代碼:
import requests
get_response = requests.get(url='https://www.facebook.com/login/identify?
ctx=recover')
post_data = {'email':'mycorrectemailaddress'}
post_response = requests.post(url="https://www.facebook.com/login/identify?ctx=recover/POST", data=post_data)
print(post_response.text)
而且我的腳本不打算到下一個頁面,我不知道哪裏是我的錯。
什麼是錯誤? – stamaimer
@stamaimer 沒有錯誤 發送POST數據腳本後會顯示我的個人資料,但所有時間打印我的開始頁... – PythonLearn
@Andersson 也許你? :) – PythonLearn