1

I want to integrate Proactive Event API and Reminder API into Alexa skills. I saw some examples using aws lambda. I want to know if i can use it using my own service?

Arunkrishna
  • 416
  • 1
  • 4
  • 18

2 Answers2

1

You can yes - it's just an HTTP call so you can do that from wherever works best for your infrastructure/skill. Please refer to the documentation here:

Pan Wangperawong
  • 1,250
  • 2
  • 13
  • 29
chearmstrong
  • 332
  • 2
  • 11
-1

I would highly recommend using the ASK SDK to develop your skill as it handles authentication for you among other things.

See this tutorial with a live code video on how to integrate the RemindersAPI using the ASK SDK for Node.js.

Pan Wangperawong
  • 1,250
  • 2
  • 13
  • 29