bgara
bgara

Reputation: 143

Alexa Web API for Games - Skill Manifest

I enabled Alexa Web API for Games under Interface on Alexa Skill.

When I get the Skill Manifest, I clearly see

{
    "type": "ALEXA_PRESENTATION_HTML"
}

But when I ran the Test in Simulator I don't see the below in Request

...
    "device": {
      "deviceId": "amzn1.ask.device.XXXX",
      "supportedInterfaces": {
        **"Alexa.Presentation.HTML": {
          "runtime": {
            "maxVersion": "1.0"
          }**
        }
      }
    },

Am I missing something.

Upvotes: 2

Views: 144

Answers (1)

Ashish Yadav
Ashish Yadav

Reputation: 154

This is because the simulator does not support Alexa.Presentation.HTML You will get this request when you try your skill on an Echo show device or FireTv.

Upvotes: 3

Related Questions