Skip to content

Latest commit

 

History

History
58 lines (39 loc) · 1.04 KB

File metadata and controls

58 lines (39 loc) · 1.04 KB

Alexa FAQ

How to set the endpoint?

They're two ways to set the endpoint:

  1. Via the UI, click on Endpoint then change the Default Region:

  1. Via the ask cli:

Modify skills.json and change the following:

"apis": {
  "custom": {
    "endpoint": {
      "uri": "https://api.contoso.com/ords/demo-alexa/askme/v1/sayHello",
      "sslCertificateType": "Trusted"
    }
  }
},
...

Then re-deploy:

ask deploy -t skill

What SSL Certifcate Type should I use?

In post cases the default Trusted option should work. If your domain provider has a wildcard certificate set to Wildcard. If you're using skills.json to manage endpoints use:

"apis": {
  "custom": {
    "endpoint": {
      "uri": "https://demo.oracleapex.com/...",
      "sslCertificateType": "Wildcard"
    }
  }
},
...