diff options
Diffstat (limited to 'README.md')
-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. | ||