diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2016-05-20 19:43:29 -0400 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2016-05-20 19:43:29 -0400 |
commit | 56ca2f8d1f0944b2b7e2b5eb56eced408930d34d (patch) | |
tree | bb297aca51a6423addf51ca8e935357bb98a8f0a | |
parent | 77b6ba9a45714b0b91b9ad782877bce5ca92a258 (diff) | |
download | libtwittercpp-56ca2f8d1f0944b2b7e2b5eb56eced408930d34d.tar.gz libtwittercpp-56ca2f8d1f0944b2b7e2b5eb56eced408930d34d.tar.bz2 libtwittercpp-56ca2f8d1f0944b2b7e2b5eb56eced408930d34d.zip |
Updated README to reflect the user stream commits
-rw-r--r-- | README.md | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/README.md b/README.md index 8f66739..d016e7d 100644 --- a/README.md +++ b/README.md | |||
@@ -4,4 +4,7 @@ libtwitter++ is a C++ Twitter client library I'm working on to replace twitcurl, | |||
4 | It is still under active development, and gains new features as I need them. Currently, libtwitter++ can: | 4 | It is still under active development, and gains new features as I need them. Currently, libtwitter++ can: |
5 | - Authenticate with an OAuth consumer key, consumer secret, access key, and access secret. | 5 | - Authenticate with an OAuth consumer key, consumer secret, access key, and access secret. |
6 | - Upload media. | 6 | - Upload media. |
7 | - Send tweets. Tweets can contain media. Tweets cannot currently be responses to other tweets. | 7 | - Send tweets. Tweets can contain media. Tweets can be responses to other tweets. |
8 | - Consume a user stream with no parameters. libtwitter++ consumes the user stream in a separate thread. You can (should) define a callback function that will be called when the stream receives a message. The connection follows Twitter's guidelines for backoff reconnection, and for network stalling. Received tweet and user objects currently only contain limited information (IDs, authors, and text for tweets; IDs, screen names, and real names for users). | ||
9 | - Follow and unfollow users. | ||
10 | - Access friends and followers lists. | ||