From 0386d1bb3f9cfd8e9b5c407bfd2af0f2788d0bc0 Mon Sep 17 00:00:00 2001 From: jehna Date: Tue, 1 Sep 2015 19:52:15 +0300 Subject: [PATCH] Updated documentation to match the new methods --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 41eaae9..448100a 100644 --- a/README.md +++ b/README.md @@ -75,6 +75,8 @@ getUserTimeline(object options) // GET statuses/user_timeline searchTweets(string keyword, object options); // GET search/tweets postStatusUpdate(string statusText, object options); // POST statuses/update getUserDetails(string user_id, object options); // GET users/show +getRequest(string full_twitter_api_url, object options); // GET custom url +postRequest(string full_twitter_api_url, object options); // POST custom url ```