READMEの更新

This commit is contained in:
keita
2021-02-18 16:48:17 +09:00
parent 10eb11f3f5
commit 7f94d6aaab
+4 -1
View File
@@ -9,7 +9,7 @@ This is a library for using Twitter API from C++
you can use these endpoint you can use these endpoint
- statuses/update - statuses/update
- favorites/create - favorites/create
- favorites/destroy
# How # How
## API Key Registration ## API Key Registration
@@ -64,4 +64,7 @@ api.status().Update("Hello, World!!\nTweet from Cocoa Twitter Library");
// Fav. to tweet // Fav. to tweet
api.favorite().Create("tweet id"); api.favorite().Create("tweet id");
// un Fav. to tweet
api.favorite().Destroy("tweet id");
``` ```