Skip to content

Instantly share code, notes, and snippets.

@Cshion
Created June 22, 2016 17:40
Show Gist options
  • Save Cshion/171c25875d65415e223ad1cf03b997d3 to your computer and use it in GitHub Desktop.
Save Cshion/171c25875d65415e223ad1cf03b997d3 to your computer and use it in GitHub Desktop.
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);
}
});
@elguille86
Copy link

Gracias por tu ayuda

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment