Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |