They're two ways to set the endpoint:
- Via the UI, click on
Endpointthen change theDefault Region:
- 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 skillIn 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"
}
}
},
...