Running the twitter timeline example
-
I am trying to learn how to network using QT, and I recently got stuck with one of their examples, "The twitter timeline example", it keeps on giving me this error,"qt.network.ssl: QSslSocket::connectToHostEncrypted: TLS initialization failed
qt.networkauth.replyhandler: TLS initialization failed)", after surfing the net, I found out that it is probably because I do not have openssl installed. Can someone please tell me what I am doing
After following this example and several others, How to Include OpenSSL in a Qt project , the problem remains unchanged.
this is my .pro file -
@Abdulmueez said in Running the twitter timeline example:
After following this example and several others, How to Include OpenSSL in a Qt project , the problem remains unchanged.
because linking against OpenSSL isn't required.
You need to make sure that it can be loaded during runtime. Either place it next to your executable or in a global search path (PATH env variable on Windows for example) -
when you mean placing in my executable, you mean placing in the folder containing the .exe file right?
-
Hi,
Yes, that's that.