我試圖登錄到instagram.Here是我的代碼登錄到Instagram的使用python
from bs4 import BeautifulSoup
from requests import *
payload = {
'action': 'login',
'username': 'name',
'password': 'pass'
}
with session() as c:
c.post('https://www.instagram.com/login.php', data=payload)
response = c.get('https://www.instagram.com/accounts/edit/')
print(response.headers)
print(response.text)
遺憾的是它似乎並沒有記錄我在我得到:
lt-ie8 lt-ie7 not-logged-in client-root
任何解決方案將不勝感激。謝謝。
,如果您成功訪問過instagram,可以先檢查頁面嗎?有可能你得到了一個錯誤,特別是如果他們實現了反bot功能。 – jabargas
我試圖去'https://www.instagram.com/login.php',頁面不存在。 – jabargas
您尚未傳遞任何標題。你有沒有試過包括他們? – Mahesh