python - Not able to login with "requests" module -
i'm trying log website requests module.
import requests url = "http://m.kicktipp.de/info/profil/login" requests.session() s: s.get(url) payload = {"kennung": "my_email", "passwort": "my_password"} s.post(url, data=payload) r = s.get(url) print(r.text) after running code checked html-code ouput , noticed login failed. keys seem correct ("kennung", "passwort"). there aren't middlewaretokens neither cause trouble.
is there missing?
Comments
Post a Comment