12300 Invalid Content Type
The following page TWIML MESSAGE: YOUR RESPONSE, lead me to the right way to implement the web hook.
[HttpGet]
public HttpResponseMessage SmsAnswerCallBack(string id)
{
var res = Request.CreateResponse(HttpStatusCode.OK);
res.Content = new StringContent("<Response/>", Encoding.UTF8, "text/xml");
return res;
}
No comments:
Post a Comment