Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save josephmilla/33425b74bef60abca793 to your computer and use it in GitHub Desktop.
Save josephmilla/33425b74bef60abca793 to your computer and use it in GitHub Desktop.
$.ajax({
type: "POST",
username: "ACCOUNT_SID",
password: "AUTH_TOKEN",
url: "https://api.twilio.com/2010-04-01/Accounts/[ACCOUNT_SID]/Messages.json",
data: {
"To" : "+911234567890",
"From" : "+11234567890",
"Body" : "From jQuery AJAX"
},
success: function(data) {
console.log(data);
},
error: function(data) {
console.log(data);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment