From 7f94d6aaabb615b87acb1ae55cada11592f78186 Mon Sep 17 00:00:00 2001 From: keita Date: Thu, 18 Feb 2021 16:48:17 +0900 Subject: [PATCH] =?UTF-8?q?README=E3=81=AE=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ef8db86..4cb3fe9 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ This is a library for using Twitter API from C++ you can use these endpoint - statuses/update - favorites/create - +- favorites/destroy # How ## API Key Registration @@ -64,4 +64,7 @@ api.status().Update("Hello, World!!\nTweet from Cocoa Twitter Library"); // Fav. to tweet api.favorite().Create("tweet id"); + +// un Fav. to tweet +api.favorite().Destroy("tweet id"); ```