From 3fc9c63a066458ab0031fd4fae35301e7d4d5cf0 Mon Sep 17 00:00:00 2001 From: Azat Mardanov Date: Thu, 21 Mar 2013 17:24:20 -0700 Subject: [PATCH] Update Readme.md quote mismatch --- Readme.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Readme.md b/Readme.md index 38e687b..beea8b5 100644 --- a/Readme.md +++ b/Readme.md @@ -28,16 +28,16 @@ describe('OAuth1.0',function(){ var oauth = new OAuth.OAuth( 'https://api.twitter.com/oauth/request_token', 'https://api.twitter.com/oauth/access_token', - "your application consumer key', - "your application secret", + 'your application consumer key', + 'your application secret', '1.0A', null, 'HMAC-SHA1' ); oauth.get( 'https://api.twitter.com/1.1/trends/place.json?id=23424977', - "your user toke for this app", //test user token - "your user secret for this app", //test user secret + 'your user toke for this app', //test user token + 'your user secret for this app', //test user secret function (e, data, res){ if (e) console.error(e); console.log(require('util').inspect(data));