I am trying to login to my WLAN Access Point using python 2.7 Using the requests module, I was able to log in and change the SSID and Password of the router for the TpLink TL-WR740N and TL-WR841N. Both these routers have require both username and password when logging into the admin page through the browser. Here I can get a sessionID once logged into the AP. Using this session ID, further actions can be done.
session = requests.Session()
resp = session.get('http://<ipAddress>/.../LoginRpm.htm?Save=Save', headers=httpHeader)
## COMMENT :: session ID is contained in resp
## COMMENT : Response from above code - session ID - DIEHLXTCZFSDWSVB.
<body><script language="javaScript">window.parent.location.href = "http://<ipAddress>/DIEHLXTCZFSDWSVB/.../Index.htm";
</script></body></html>
However, I could not log into the TPLink TL-MR3620 router the same way. On the browser GUI, this router requires only a password; username is not required. When looking at the source, could see the code in .js format (I haven't done any JavaScript programming so far).
Need help logging into the AP.