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

Popular posts from this blog

authentication - Mongodb revoke acccess to connect test database -

r - Update two sets of radiobuttons reactively - shiny -

ios - Realm over CoreData should I use NSFetchedResultController or a Dictionary? -