Sunday, January 31, 2010

Twitter API client library for C++ and Qt framework

QTwitterClient is an API client library for the ubiquitous Twitter microblogging service written in C++ and using the Qt framework.

QTwitterClient is cross-platform and works on all platforms supported by Qt such as Windows, Linux, and Mac OS X, even mobile platforms like Symbian and Maemo.

Usage is very simple:
QTwitterClient *twitter = new QTwitterClient(this);
twitter->setLogin(login);
twitter->setPassword(password);

twitter->tweet("I feel really good today!");
QTwitterClient is free/open source software and licensed under LGPL 2.1 or later.

Check out QTwitterClient project page to get the source code. I will appreciate any feedback you have.

Update: Moved QTwitterClient project to Gitorious.

4 comments:

  1. Thanks for sharing the library. It worked just great for my little experiment. :)

    ReplyDelete
  2. Juho: I'm glad you found it useful!

    Please... feel free to modify the code and submit a pull request :) I'll be happy to merge

    ReplyDelete
  3. hi
    i was trying the code and found it not working
    then i searched and found that twitter changed Auth to OAuth

    any new update for the code ?

    ReplyDelete
  4. @mamdouh.al.shamy I'm sorry but not for now.

    Feel free to improve the code and submit a pull request :)

    ReplyDelete

Be the first to comment!