Are you running PyQt on Windows? If so, the Twitter login form posts to an HTTPS, and you'll need to have the OpenSSL DLLs (ssleay32.dl, libeay32.dll) in your path.
To verify, you can do this from the command line: $ python >>> from PyQt4 import QtNetwork >>> QtNetwork.QSslSocket.supportsSsl() True Yao On Fri, Aug 13, 2010 at 12:54 PM, Mico Siahaan <[email protected]> wrote: > Dear all, > > I am trying to make simple browser just to browse my twitter account. > I typed code like this: http://pastebin.com/ZkPmxzpd. > But, I still can't login into my account. I am new in PyQt and have no > experiences in C++ before, so reading Qt documentation just made me > more confused. I am stuck. Please give me hints or solution for this. > > thanks, > > -- > Mico | [email protected] | @bangmico > _______________________________________________ > PyQt mailing list [email protected] > http://www.riverbankcomputing.com/mailman/listinfo/pyqt > _______________________________________________ PyQt mailing list [email protected] http://www.riverbankcomputing.com/mailman/listinfo/pyqt
