keatontaylor / alexa-actions

A README and associated code to get actionable notifications setup for Alexa devices.
GNU General Public License v3.0
399 stars 187 forks source link

[Bug]: Skill-Test schlägt fehl #203

Closed Romero-KCBS2003 closed 1 year ago

Romero-KCBS2003 commented 1 year ago

Did you check our FAQ and Issue/PR for similar issues?

Contact Details

matthias.michel1986@outlook.de

What happened?

Bei der Installation auf der Amazon-Developer-Seite kommt bei mir als Antwort immer: "Timer werden derzeit auf diesem Gerät nicht unterstützt". Ich habe das Setup laut Anleitung mehrfach geprüft und kann keinen Fehler entdecken 😑

image

image

image

image

image *das unknown am Textbeginn wurde entfernt -> keine Änderung

Habe ich etwas übersehen?

Danke und viele Grüße

Version

2023.8.4

What Alexa device are you using?

Other

What other Alexa device are you using?

No response

Relevant log output

No response

DEADSEC-SECURITY commented 1 year ago

Hi, I know that this was developer by a german guy, but I don't speak german and also keep it in english so future users can read this too.

DEADSEC-SECURITY commented 1 year ago

You probably have an older Alexa device so you will need to disable the Timers intent by removing it from the intents file.

I suppose your using german so in your skill-package/interactionModels/custom/de-DE.json file you need to remove:

{
          "name": "Duration",
          "slots": [
            {
              "name": "Durations",
              "type": "AMAZON.DURATION"
            }
          ],
          "samples": [
            "{Durations}"
          ]
        },
        {
          "name": "Date",
          "slots": [
            {
              "name": "Dates",
              "type": "AMAZON.DATE"
            },
            {
              "name": "Times",
              "type": "AMAZON.TIME"
            }
          ],
          "samples": [
            "{Dates} um {Times}",
            "um {Times}",
            "{Dates}"
          ]
        }

Let me know if that worked.

Romero-KCBS2003 commented 1 year ago

I have delete it but the answer from Alexa is the same like before: "Timer werden derzeit auf diesem Gerät nicht unterstützt"("Timers are not currently supported on this device") 😑

Update, i have wait for some minutes and now it works. Thanks to DEADSEC-SECURITY 🎉