Created
June 22, 2016 17:40
-
-
Save Cshion/171c25875d65415e223ad1cf03b997d3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var request = require("request"); | |
var URL = "http://11.17.25.172:8090/intico/weurces/envioSMS/sms"; | |
request.post(URL , { | |
form : { | |
usuario : "value1" , | |
password : "value2" , | |
celular : "value3" , | |
mensaje : "value4" , | |
senderId : "value5" | |
} | |
} , function ( err , res , body ) { | |
if ( err ) { | |
console.error(err); | |
} else { | |
console.log(body); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Gracias por tu ayuda