Python - How To Request Pages From Website That Uses OpenID
I'm writing a python script that scrapes a website, where the website uses OpenID auth to identify me via google. Is there a python library that will handle do this for me, or do I
Solution 1:
From the client's perspective, an OpenID login is very similar to any other web-based login. There isn't a defined protocol for the client; it is an ordinary web session that varies based on your OpenID provider. For this reason, I doubt that any such libraries exist. You will probably have to code it yourself.
Post a Comment for "Python - How To Request Pages From Website That Uses OpenID"