Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 30th, 2012  |  syntax: None  |  size: 0.25 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Node.js: Make a HTTP POST with params
  2. call = "https://aaa@api.twilio.com/2010-04-01/Accounts/sasa/Calls.xml"
  3. fields = { To : "+12321434", From : req.body.from }
  4.  
  5. request.post
  6.   url: call, body: fields (err,response,body) ->
  7.     console.log response.body