Gyanendra Verma
Gyanendra Verma

Reputation: 1

Action on Google with AWS LAMBDA in python

I wrote AWS Lambda function in python for my smart home Alexa skill. I wanted to implement the actions on google on the same lambda. Is there any option to implement the same? I'm not much comfortable using Node JS. Also don't want to change the technology stack of lambda. As it's a Live skill. Can anyone suggest to me what to do? Any step by step guide or tutorial will be much appreciated.

Upvotes: 0

Views: 646

Answers (1)

Nick Felker
Nick Felker

Reputation: 11968

You can create a smart home action in any programming language. The platform incorporates JSON requests to your webhook and expects JSON responses. You can look at the platform reference guide for the expected requests and responses.

In the Actions Console, after creating your Smart Home Action, you can specify the URL for your webhook.

Upvotes: 1

Related Questions