Hello guys I am trying to send sms from client side using twilio here is what I am trying
url = 'https://api.twilio.com/2010-04-01/Accounts/AC5b593d9bfeedd9e/Messages.json';
axios.post(url,{
"To" : "+9134324738",
"From" : "+14698",
"Body" : "Fgrgajshdkajsdhrom axios"
},{headers: { Authorization: 'Basic sdfsdfsdf=',
'Content-Type': 'application/x-www-form-url' }
})
but I am getting 400 bad request response
here is what I am getting in response
{
"code": 21603,
"message": "A 'From' phone number is required.",
"more_info": "https://www.twilio.com/docs/errors/21603",
"status": 400
}
Please suggest some
"From" : "+1469867890 "
– mike123