about summary refs log tree commit diff stats
path: root/src/direct_message.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Removed more stream-related classesKelly Rauchenberger2018-08-301-10/+0
| | | | | | Among the deleted classes are list and direct_message. These classes were just stubs because the streaming API was able to return those objects. libtwitter++ does not yet actually support these objects, so the stub classes will be deleted for now. refs #3
* Started implementing user streamsKelly Rauchenberger2016-05-201-0/+10
You can now start a user stream and end it yourself. If it disconnects abnormally, it will reconnect with a backoff as described by Twitter. Some data structures have some fields parsed now; tweets have IDs, text, and authors. Users have IDs, screen names, and names. Notifications from the stream are parsed completely. The ability to follow and unfollow users has also been added, as well as the ability to get a list of friends and followers, and to reply to a tweet.