if possible, please, help me with the following question.
Here is what my python script does:
- Using API create new user for certain site (let's call it whatever.com)
- Generate web page with button "Log in"
- When button "Log in" is pressed, user is logged in into whatever.com
The problem: if user was logged in into whatever.com prior to pressing "Log in", new user is not logged in (old user is) when "Log in" button is pressed.
Basically, I need to log out user from site whatever.com before page with button "Log in" is generated.
I've tried to play with cookiejar and Cookie, but didn't succeed.
Thanks a lot!