access external api with OAuth and Node

151 Views Asked by At

I'm trying to make an application that gets data from Yahoo using their API. I have a website set up using a MEN (Mongo, Express, Node) stack. I am having a lot of trouble figuring out how to make requests from my server to Yahoo and get the data I want. I found this while searching, but I don't fully understand it or the general process of making the request, getting the data back and processing it. Any help in explaining how to access an external API with Node / use OAuth with Node would be very helpful.

app.get('/page.html', function (req, res, next){
    var qs = require('querystring')
  , oauth =
    { callback: 'http://awebsite.com'
    , consumer_key: my_key
    , consumer_secret: a_secret
    }
  , url = 'https://api.twitter.com/oauth/request_token'
  ;
request.post({url:url, oauth:oauth}, function (e, r, body) {
  // Ideally, you would take the body in the response
  // and construct a URL that a user clicks on (like a sign in button).
  // The verifier is only available in the response after a user has
  // verified with twitter that they are authorizing your app.
  var access_token = qs.parse(body)
    , oauth =
      { consumer_key: CONSUMER_KEY
      , consumer_secret: CONSUMER_SECRET
      , token: access_token.oauth_token
      , verifier: access_token.oauth_verifier
      }
    , url = 'https://api.twitter.com/oauth/access_token'
    ;
  request.post({url:url, oauth:oauth}, function (e, r, body) {
    var perm_token = qs.parse(body)
      , oauth =
        { consumer_key: CONSUMER_KEY
        , consumer_secret: CONSUMER_SECRET
        , token: perm_token.oauth_token
        , token_secret: perm_token.oauth_token_secret
        }
      , url = 'https://api.twitter.com/1.1/users/show.json?'
      , params =
        { screen_name: perm_token.screen_name
        , user_id: perm_token.user_id
        }
      ;
    url += qs.stringify(params)
    request.get({url:url, oauth:oauth, json:true}, function (e, r, user) {
      console.log(user)
    })
  })
})
    res.render("page.html");
});
0

There are 0 best solutions below