Good evening,
Until a couple of weeks ago my skill was working fine. No interaction mode, it was just listening to ITEMS_CREATED events (addition of an item to the Alexa Lists), and acting upon it.
I am self hosting the underlying code, and I could see that two weeks ago on my apache logs I was indeed receiving requests upon adding an item, but it is not the case anymore. I have not changed anything as far as I know in the skill, the hosting, and the persmission of the skills on the alexa app.
To double check it was an issue to my certificate, domain name typo, etc, I have subscribed to SKILL_ENABLED and SKILL_PERMISSION_ACCEPTED, and I can see the request on my apache log when the corresponding event happen.
Probably what is the most interesting if someone wants to help me debugging is the following part of the manifest:
"householdList" : {
"endpoint" : {
"uri" : ""
}
}
},
"permissions" : [
{
"name" : "alexa::household:lists:read"
},
{
"name" : "alexa::household:lists:write"
}
],
"events" : {
"endpoint" : {
"uri" : "REDACTED" ,
"sslCertificateType" : "Wildcard"
}
Thanks if you happen to have any idea that could help me debugging!
Kind regards