14104: Invalid Method attribute
WARNING
You see this warning when the <Message> verb uses a method attribute value other than GET or POST. Use the method attribute to tell Twilio whether to request the action URL with HTTP GET or POST. If you omit method, Twilio uses POST.
- Your TwiML sets the
<Message>verb'smethodattribute to a value other thanGETorPOST. - Your application generates a
<Message>verb with an unsupported HTTP method for theactionURL request. Twilio only supportsGETandPOSTfor this attribute.
- Update the
<Message>verb so themethodattribute is set toGETorPOSTonly. - Remove the
methodattribute if you want Twilio to use the defaultPOSTrequest. - Review the
actionURL on your<Message>verb and make sure the endpoint is prepared to receive the HTTP method you selected.