From 2f0f51ab605577e28fd9cc790541c6f34bdb5403 Mon Sep 17 00:00:00 2001 From: Rodrigo P Reis Date: Sun, 26 Jul 2015 15:38:44 -0600 Subject: [PATCH] updated readme with correct example to create a new AuthenticatedUntappdCredentials. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fdd0f37..3582e8d 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ For Authenticated requests: ```csharp -var ts = new AuthenticatedUntappdCredentials("token", "key", "secret"); +var ts = new AuthenticatedUntappdCredentials("token"); var t = new Repository().Get(ts); ``` @@ -79,7 +79,7 @@ For Actions (usually post requests). Note: Actions return a dynamic object. Usua ```csharp -var ts = new AuthenticatedUntappdCredentials("token", "key", "secret"); +var ts = new AuthenticatedUntappdCredentials("token"); var checkin = new CheckIn("-5", "EST", 1044097) { Shout = "Awesome Brew", Rating = 4 }; var response = repository.Post(ts, checkin);