Guest User

Untitled

a guest
Sep 2nd, 2018
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. const options = {
  2. host: 'api.twilio.com',
  3. path: '/2010-04-01/Accounts/' + TWILIO_ACCOUNT + '/Messages.json',
  4. auth: {
  5. user: TWILIO_ACCOUNT,
  6. pass: TWILIO_API_KEY
  7. }
  8. };
  9.  
  10. const req = https.get(options, (res) => { ...
  11.  
  12. const options = {
  13. host: 'api.twilio.com',
  14. path: '/2010-04-01/Accounts/' + TWILIO_ACCOUNT + '/Messages.json'
  15. };
  16.  
  17. const req = https.get(options, (res) => { ...
Add Comment
Please, Sign In to add comment