Beldion
Beldion

Reputation: 331

Application and invalid certificate errors

I am testing a call flow and I am receiving the following errors. I am receiving this error message on my twilio alert dashboard:

11237 - Certificate Invalid - Could not find path to certificate

and if I try dialing the number the prompt I hear on the phone is

We are sorry and application error has occurred. Goodbye

I am using a trial account and have not upgraded yet. I am also using openvbx.

Can anyone help me please?

Upvotes: 1

Views: 1639

Answers (2)

Alex Baban
Alex Baban

Reputation: 11702

The error you're getting is documented here:

https://www.twilio.com/docs/api/errors/11237

So, you either configure the phone number 'Request URL' value at Twilio to use http instead of https or configure your openvbx web server (Apache or Nginx) with a certificate from an established CA (certificate authority), that means you can't use a self signed certificate.

Upvotes: 3

Marcos Placona
Marcos Placona

Reputation: 21720

Twilio developer evangelist here. I think the error you're seeing is because you're either trying to use a self-signed certificate, or the certificate you're using is not issued by an approved certificate authority.

Check this link out for more information.

If you want to use SSL, I would suggest using something like let's encrypt. I wrote an article describing how to install it on Apache.

Hope this helps you

Upvotes: 0

Related Questions