QTweetLib icon indicating copy to clipboard operation
QTweetLib copied to clipboard

C++ Qt based Twitter library

Results 7 QTweetLib issues
Sort by recently updated
recently updated
newest added

Are there any plans? I can do it myself if there's interest.

see https://qt.gitorious.org/qt/qtbase/source/73a1e8c60d894701f34806cc4b847aa2814bf389:src/corelib/io/qurl.cpp - now QUrl.encodedQueryItems and QUrl.encodedQueryItemValue are missing from Qt, you should not reference them in oauth.cpp

1. qtweetgeocoord.cpp:43]: (warning) Logical disjunction always evaluates to true: m_latitude > -90.0 || m_latitude < 90.0. Source code is if (m_latitude > -90.0 || m_latitude < 90.0) 2. qtweetgeocoord.cpp:53]: (warning)...

When running pinauthupdate, clicking "Authorize" - the browser with twitter opens up but the dialog with input box for PIN don't.

I have been trying to compile your code, but as soon as it tries to link any example, it starts throwing a list of undefined symbols at the libraries: g++...

i always get this: g++: ../../lib/QTweetLib.lib: No such file or directory mingw32-make[1]: **\* [debug\searchexample.exe] Error 1 mingw32-make: **\* [debug] Error 2 The process "C:\QtSDK\mingw\bin\mingw32-make.exe" exited with code 2. Error while...

Works incorrect should have a body if (!isAuthenticationEnabled()) { qCritical("Needs authentication to be enabled"); return; } ``` QUrl url("http://api.twitter.com/1/friendships/destroy.json"); QUrl urlQuery(url); urlQuery.addQueryItem("screen_name", QUrl::toPercentEncoding(screenName)); if (includeEntities) { urlQuery.addQueryItem("include_entities", "true"); } QNetworkRequest...