about summary refs log tree commit diff stats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Added missing #include <memory>Kelly Rauchenberger2016-09-051-0/+1
|
* Merge branch 'master' of https://github.com/hatkirby/libtwittercppKelly Rauchenberger2016-08-203-43/+56
|\
| * Added method to Tweet to get URLKelly Rauchenberger2016-06-122-0/+6
| |
| * Merge branch 'master' of https://github.com/hatkirby/libtwittercppKelly Rauchenberger2016-06-027-198/+454
| |\
| * | Fixed user stream unable-to-reconnect issueKelly Rauchenberger2016-06-021-19/+20
| | |
* | | Updated API to use exceptions and make tweet/user objects more helpfulKelly Rauchenberger2016-08-2020-1339/+1529
| |/ |/|
* | Wrapped JSON parsing in exception handlingKelly Rauchenberger2016-06-014-198/+270
| |
* | Added ability to get configurationKelly Rauchenberger2016-05-315-0/+184
|/
* Added option to receive all replies in user streamKelly Rauchenberger2016-05-252-10/+35
|
* Fixed stream behavior when connection ends normallyKelly Rauchenberger2016-05-241-1/+6
|
* Fixed retweet detectionKelly Rauchenberger2016-05-222-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 prefillKelly Rauchenberger2016-05-226-0/+45
|
* Projects using libtwitter++ no longer have to include its dependenciesKelly Rauchenberger2016-05-212-8/+8
|
* Added "retweeted" field to tweetKelly Rauchenberger2016-05-202-0/+17
|
* Started implementing user streamsKelly Rauchenberger2016-05-2013-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 POSTsKelly Rauchenberger2016-04-151-2/+4
|
* Added #include <unistd.h>Kelly Rauchenberger2016-04-151-0/+1
|
* Added ability to upload media and tweet itKelly Rauchenberger2016-04-139-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 tweetKelly Rauchenberger2016-04-127-0/+295