-1

我正在研究智能家居 Alexa Skill 和相应的 Lambda 函数。有很多演示,它们似乎都返回罐头文本。有没有办法通过 Lambda/JS 获取用户帐户的连接设备列表?

像这样的样本:

const USER_DEVICES = [
{
    // This id needs to be unique across all devices discovered for a given manufacturer
    applianceId: 'unique-id-for-non-dimmable-bulb-specific-to-user1',
 },{},{},...]

我很想实现更像这样的代码:

const USER_DEVICES = Some.Alexa.Function.GetConnectedDevices()

谢谢!

4

1 回答 1

0

你检查过智能家居技能 API 了吗?它可以让您与连接的设备进行交互并获取有关它们的数据:https ://developer.amazon.com/docs/smarthome/understand-the-smart-home-skill-api.html

于 2018-12-15T21:26:28.453 回答