I am trying to connect Rasa X to twilio. I setup RasaX with the one line deploy script on GCP.
I followed Karen White’s Setup guide: The Complete Guide To Deploying Your Rasa Assistant | The Rasa Blog | Rasa
I followed Kasey Byrne’s guide to connect twilio to Rasa: Connecting a Rasa Assistant to Twilio | The Rasa Blog | Rasa
I also followed the docs to connect Rasa and Twilio: Twilio
I am getting a 404 when trying to contact my server and Twilio Error 11200:
There was a failure attempting to retrieve the contents of this URL. An 11200 error is an indicator of a connection failure between Twilio and your service. When Twilio requests a page from your server, we wait a maximum of 15 seconds for a response. A connection failure will occur if no response is returned in that time.
The only thing I’m not sure I setup correctly was this in my credentials.yml
rasa: url: “https://myrasa.dev/api”
I tried to run this command in my terminal:
curl -g -X POST --url https://myrasa.dev/core/webhooks/twilio/webhook --header “Content-Type:application/json” --data ‘{“message”:“hello”}’ Error: Requested URL /webhooks/twilio/webhook not found(rasa)
If someone could help me understand why I am getting a 404, I would appreciate it.