Closed mrozbarry closed 10 years ago
Looks like your app is not (or not properly) registered with Twitter.
Based on my code, I'm starting QBirdStream by doing:
new QBirdStream( "<consumer_key>", "<consumer_secret>", this );
This eventually translates to:
O1Twitter_object->setClientId( "<consumer_key>" );
O1Twitter_object->setClientSecret( "<consumer_secret>" );
The documentation isn't completely clear in O1Twitter.h - is that supposed to be the consumer key/secret, or something else?
I am developing a Qt5 Twitter application, but was running into an issue during authentication. When my application attempts to authenticate, I get the following on stdout:
What's strange is I am able to launch OAuth from the twitterdemo example application provided.
Here is the relevant snippets of my class.
Again, the provided twitterdemo doesn't output any sort of stderr/stdout errors, and behaves exactly as expected.
I'm including all of the o2 source files, through the pri file provided, so I don't think it's any sort of missing dependency.
I'm using the following QT modules in my pro file:
core gui network webkit webkitwidgets script