Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Whitespace changes | Kelly Rauchenberger | 2018-08-30 | 4 | -76/+76 |
| | |||||
* | Removed more stream-related classes | Kelly Rauchenberger | 2018-08-30 | 6 | -147/+2 |
| | | | | | | 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 | ||||
* | Removed stream functionality | Kelly Rauchenberger | 2018-08-30 | 5 | -1772/+0 |
| | | | | | | The Twitter streaming API has officially sunset, so the stream functionality can no longer be used. Because of this, there is no need to keep it in the codebase. refs #3 | ||||
* | Added ability to hydrate user objects | Kelly Rauchenberger | 2018-08-06 | 2 | -0/+35 |
| | |||||
* | User objects now contain whether the user is protected | Kelly Rauchenberger | 2018-08-06 | 2 | -16/+25 |
| | |||||
* | Tweets store their created time | Kelly Rauchenberger | 2018-08-05 | 4 | -41/+97 |
| | | | | C/C++ time handling is awful, pass it on | ||||
* | Added ability to hydrate tweets | Kelly Rauchenberger | 2018-08-05 | 2 | -0/+35 |
| | |||||
* | Merge branch 'master' of https://github.com/hatkirby/libtwittercpp | Kelly Rauchenberger | 2018-08-05 | 2 | -0/+40 |
|\ | |||||
| * | Whitespace changes | Kelly Rauchenberger | 2018-02-23 | 2 | -125/+125 |
| | | |||||
| * | Added ability to get blocklist | Kelly Rauchenberger | 2018-02-23 | 2 | -2/+36 |
| | | |||||
| * | Added a convenience overload to client::replyToTweet | Kelly Rauchenberger | 2016-12-01 | 2 | -0/+6 |
| | | |||||
* | | Added timeline polling | Kelly Rauchenberger | 2018-08-05 | 15 | -820/+920 |
|/ | | | | 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 objects | Kelly Rauchenberger | 2016-11-29 | 12 | -151/+610 |
| | | | | 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. | ||||
* | Added another missing #include <memory> | Kelly Rauchenberger | 2016-09-12 | 1 | -0/+1 |
| | |||||
* | Added missing #include <memory> | Kelly Rauchenberger | 2016-09-05 | 1 | -0/+1 |
| | |||||
* | Merge branch 'master' of https://github.com/hatkirby/libtwittercpp | Kelly Rauchenberger | 2016-08-20 | 3 | -43/+56 |
|\ | |||||
| * | Added method to Tweet to get URL | Kelly Rauchenberger | 2016-06-12 | 2 | -0/+6 |
| | | |||||
| * | Merge branch 'master' of https://github.com/hatkirby/libtwittercpp | Kelly Rauchenberger | 2016-06-02 | 7 | -198/+454 |
| |\ | |||||
| * | | Fixed user stream unable-to-reconnect issue | Kelly Rauchenberger | 2016-06-02 | 1 | -19/+20 |
| | | | |||||
* | | | Updated API to use exceptions and make tweet/user objects more helpful | Kelly Rauchenberger | 2016-08-20 | 20 | -1339/+1529 |
| |/ |/| | |||||
* | | Wrapped JSON parsing in exception handling | Kelly Rauchenberger | 2016-06-01 | 4 | -198/+270 |
| | | |||||
* | | Added ability to get configuration | Kelly Rauchenberger | 2016-05-31 | 5 | -0/+184 |
|/ | |||||
* | Added option to receive all replies in user stream | Kelly Rauchenberger | 2016-05-25 | 2 | -10/+35 |
| | |||||
* | Fixed stream behavior when connection ends normally | Kelly Rauchenberger | 2016-05-24 | 1 | -1/+6 |
| | |||||
* | Fixed retweet detection | Kelly Rauchenberger | 2016-05-22 | 2 | -3/+72 |
| | | | | 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 prefill | Kelly Rauchenberger | 2016-05-22 | 6 | -0/+45 |
| | |||||
* | Projects using libtwitter++ no longer have to include its dependencies | Kelly Rauchenberger | 2016-05-21 | 2 | -8/+8 |
| | |||||
* | Added "retweeted" field to tweet | Kelly Rauchenberger | 2016-05-20 | 2 | -0/+17 |
| | |||||
* | Started implementing user streams | Kelly Rauchenberger | 2016-05-20 | 13 | -47/+1661 |
| | | | | 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. | ||||
* | Fixed issue with multipart POSTs | Kelly Rauchenberger | 2016-04-15 | 1 | -2/+4 |
| | |||||
* | Added #include <unistd.h> | Kelly Rauchenberger | 2016-04-15 | 1 | -0/+1 |
| | |||||
* | Added ability to upload media and tweet it | Kelly Rauchenberger | 2016-04-13 | 9 | -40/+402 |
| | | | | 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 tweet | Kelly Rauchenberger | 2016-04-12 | 7 | -0/+295 |