Android Question creating local skill for alexa

DonManfred

Expert
Licensed User
Longtime User
or interested in solution?
Me. But just for fun....

I already started to do a wrap for the SDK but then i stuck because i do not have a Creditcard and therefore i could not create a AWS Account. Due to this i was not able to create a Alexa-Skill in the Console :mad:

I then stopped development on the wrapper
 
Upvote 0

f0raster0

Well-Known Member
Licensed User
Longtime User
Hey, I have an aws account maybe @DonManfred could use it.
I want to learn more anout Alexa.
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
... maybe possible with this, to send UDP messages from alexa to d1?
I´m not sure if Alexa can send the message but i´m sure a php script hosted online can do it.

In the last days i successfully setup a test skill in the console and a php script which responds to an predefined utterance (in the console) and send back a text alexa will speak out...

in my example it returns this json
B4X:
{
  "version": "0.1",
  "response": {
    "outputSpeech": {
      "text": "Ja, dass hat funktioniert. ha ha ha",
      "type": "PlainText"
    },
    "card": {
      "content": "Ja, dass hat funktioniert. ha ha ha",
      "title": "HalloWeltIntent"
    },
    "speechletResponse": {
      "outputSpeech": {
        "text": "Ja, dass hat funktioniert. ha ha ha"
      },
      "card": {
        "content": "Ja, dass hat funktioniert. ha ha ha",
        "title": "HalloWeltIntent"
      }
    }
  },
  "sessionAttributes": {
    "countActionList": {
      "read": true,
      "category": true
    }
  }
}

Check this php script as a start

https://gist.github.com/solariz/a7b7b09e46303223523bba2b66b9b341
 
Upvote 0
Top