about summary refs log tree commit diff stats
path: root/src/tweet.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Tweets store their created timeKelly Rauchenberger2018-08-051-18/+25
| | | | C/C++ time handling is awful, pass it on
* Added timeline pollingKelly Rauchenberger2018-08-051-4/+4
| | | | Because the streaming API will sunset on August 16th, it is essential to implement timeline polling so that the library can still be used to access tweets. This commit breaks the current API even for clients still using the streaming API because the OAuth connection data was pulled from twitter::client into twitter::auth. Other than that, almost everything works the same, and if a client wants to update their libtwitter++ within the next week and a half, they are free to.
* Made tweets, users, and notifications into copyable objectsKelly Rauchenberger2016-11-291-17/+48
| | | | Notifications are now also mutable. Users and tweets no longer have helper methods for interacting with the client. Fixed a bug (possibly introduced by a change to the Twitter API) that caused non-reply tweets to be marked as unknown notifications.
* Merge branch 'master' of https://github.com/hatkirby/libtwittercppKelly Rauchenberger2016-08-201-0/+11
|\
| * Added method to Tweet to get URLKelly Rauchenberger2016-06-121-0/+5
| |
* | Updated API to use exceptions and make tweet/user objects more helpfulKelly Rauchenberger2016-08-201-99/+34
|/
* Fixed retweet detectionKelly Rauchenberger2016-05-221-2/+63
| | | | Because a retweet is a tweet referenced from another tweet, the current implementation dynamically allocates memory for the retweeted status and has to manually copy the pointed to data around. It's not a very pretty implementation and may get tweaked at some point soon. I don't like having to implement the big five.
* Added utility function to generate tweet reply prefillKelly Rauchenberger2016-05-221-0/+17
|
* Added "retweeted" field to tweetKelly Rauchenberger2016-05-201-0/+15
|
* Started implementing user streamsKelly Rauchenberger2016-05-201-4/+30
| | | | 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.
* Added ability to upload media and tweet itKelly Rauchenberger2016-04-131-1/+1
| | | | Images (static and animated) and videos have been tested. Currently all media uploads occur in one large chunk; support to break down chunks will be added later.
* Added basic ability to tweetKelly Rauchenberger2016-04-121-0/+15