Hi all, I develop an application for Symbian platform in Qt. I have encountered a problem when trying to pass xAuth using QTweetLib library. I have both consumer key and secret. I just got conformation from Twitter API Policy guys that I should be able to pass xAuth using these credentials (I have permission) but I'm not.
Here is the snippet of code: m_oauthTwitter = new OAuthTwitter(a_netManager, this); connect(m_oauthTwitter, SIGNAL(authorizeXAuthFinished()), SLOT(xauthFinished())); connect(m_oauthTwitter, SIGNAL(authorizeXAuthError()), SLOT(xauthError())); … m_oauthTwitter->authorizeXAuth(username, password); // username and password are OK I got following error (from application's output console – Qt Creator IDE): OAuth tokens are empty! Network Error: 204 Response error: "Failed to validate oauth signature and token" The error occurs on both real device (Nokia N8) and simulator (Windows XP). Date/Time seem to be set correctly. Could you advice me what should I try to solve the problem? Best Regards, Pawel -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list Change your membership to this group: http://groups.google.com/group/twitter-development-talk
