标签: alexa-sdk-nodejs

如何在没有管理员权限的情况下安装节点版本管理器(NVM)

我的 Windows 机器没有管理员权限。我可以在没有管理员权限的情况下安装 NVM 吗?我尝试使用环境变量路径设置,但它在我的情况下不起作用。

node.js node-modules google-api-nodejs-client nodejs-stream alexa-sdk-nodejs

7
推荐指数
2
解决办法
3万
查看次数

亚历克斯不承认意图

我正在尝试将自己的响应添加到自定义意图中。LaunchRequest文本有效,但是除了AMAZON.HelpIntent和其他默认意图之外,我自己的意图未被识别。

目的:

{
    "interactionModel": {
        "languageModel": {
            "invocationName": "my personal heartbeat",
            "intents": [
                {
                    "name": "AMAZON.FallbackIntent",
                    "samples": []
                },
                {
                    "name": "AMAZON.CancelIntent",
                    "samples": []
                },
                {
                    "name": "AMAZON.HelpIntent",
                    "samples": []
                },
                {
                    "name": "AMAZON.StopIntent",
                    "samples": []
                },
                {
                    "name": "start",
                    "slots": [],
                    "samples": [
                        "Talk to my personal heartbeat"
                    ]
                },

                {
                    "name": "currentbpm",
                    "slots": [],
                    "samples": [
                        "what's my current BPM",
                        "how fast is my heart beating right now",
                        "How many beats per minute is my heart making at …
Run Code Online (Sandbox Code Playgroud)

alexa node.js alexa-skill alexa-skills-kit alexa-sdk-nodejs

4
推荐指数
1
解决办法
1577
查看次数