Skip to content

Commit

Permalink
Update Readme.md
Browse files Browse the repository at this point in the history
quote mismatch
  • Loading branch information
Azat Mardanov committed Mar 22, 2013
1 parent 08569a2 commit 3fc9c63
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit 3fc9c63

Please sign in to comment.