-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
serverless alexa manifests failed #8
Comments
Thank you @ynishi 👍 It seems to be caused by major version up of Alexa Skills Kit API. I will fix this problem by migrating to |
Very thanks for details! I'v understood, and will try v0. I think it is big issue that seamless integrate aws with amazon app developer services! |
I too am receiving the same error after following all the steps. I've authenticated successfully but any of the StatusCodeError: 404 - " \n \n<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />\n<title>Looking for something?</title>\n \n\n<body style="padding: 4em; color: black; background-color: white; font-family: Verdana,Arial,Helvetica,sans-serif;">\n\n Looking for Something?\n\nWe're sorry. The Web address you entered is not a functioning page on our site.\nPlease double-check the URL for typos and other errors. Or go to our <a href="/">home page.\n \n\nVous recherchez quelque chose?\n\nNous sommes désolés. L'adresse Web que vous avez entrée n'est pas fonctionnelle.\nVérifiez bien le lien URL ou allez à notre <a href="/">page d'accueil.\n \n\n\n\n"at new StatusCodeError (/Users/bbacon/dev/clients/dillon/hoopla/hoopla-alexa-skill/node_modules/request-promise-core/lib/errors.js:32:15) at Request.plumbing.callback (/Users/bbacon/dev/clients/dillon/hoopla/hoopla-alexa-skill/node_modules/request-promise-core/lib/plumbing.js:104:33) at Request.RP$callback [as _callback] (/Users/bbacon/dev/clients/dillon/hoopla/hoopla-alexa-skill/node_modules/request-promise-core/lib/plumbing.js:46:31) at Request.self.callback (/Users/bbacon/dev/clients/dillon/hoopla/hoopla-alexa-skill/node_modules/request/request.js:186:22) at Request.emit (events.js:159:13) at Request. (/Users/bbacon/dev/clients/dillon/hoopla/hoopla-alexa-skill/node_modules/request/request.js:1163:10) at Request.emit (events.js:159:13) at IncomingMessage. (/Users/bbacon/dev/clients/dillon/hoopla/hoopla-alexa-skill/node_modules/request/request.js:1085:12) at Object.onceWrapper (events.js:254:19) at IncomingMessage.emit (events.js:164:20) at endReadableNT (_stream_readable.js:1062:12) at process._tickCallback (internal/process/next_tick.js:152:19) From previous event: at PluginManager.invoke (/Users/bbacon/.nvm/versions/node/v9.3.0/lib/node_modules/serverless/lib/classes/PluginManager.js:372:22) at PluginManager.run (/Users/bbacon/.nvm/versions/node/v9.3.0/lib/node_modules/serverless/lib/classes/PluginManager.js:403:17) at variables.populateService.then (/Users/bbacon/.nvm/versions/node/v9.3.0/lib/node_modules/serverless/lib/Serverless.js:102:33) at runCallback (timers.js:773:18) at tryOnImmediate (timers.js:734:5) at processImmediate [as _immediateCallback] (timers.js:711:5) From previous event: at Serverless.run (/Users/bbacon/.nvm/versions/node/v9.3.0/lib/node_modules/serverless/lib/Serverless.js:89:74) at serverless.init.then (/Users/bbacon/.nvm/versions/node/v9.3.0/lib/node_modules/serverless/bin/serverless:42:50) at Get Support -------------------------------------------- Your Environment Information ----------------------------- Any idea on when this issue will be resolved with this plugin? Thanks in advance! |
@ynishi @billy-bacon Sorry for my late reply 😭 I finished migrate to v1 API(#9) and fixed this issue!! Please upgrade to v0.0.6 🆙 |
@marcy-terui - Thank you for the update. I've upgraded my package.json devDependencies to use v0.0.6 and I'm still receiving the error when I run the following (after successfully authenticating).
|
@billy-bacon Thank you for your reporting. The problem will not happen in my environment ;-( Currently, this plugin only supports the |
@marcy-terui - thank you for re-opening the issue. Currently we have not published our skill yet, it's still in development phase, but my intent was to use this plugin for updating all of our skills in both a
^ Those are more specific to our lambda deployments, not so much the amazon alexa skill environment, as I believe there is just a By the way, what's the So to your question, the If this plugin only supports the Thanks @marcy-terui ! |
@billy-bacon Thanks! If you have not published it yet (development stage only), I need more information.
Yes, it is the amazon alexa skill environment and not the stage of Lambda function.
I plan to implement it with the next update #10. But, it has not a feature for publishing yet. I think that it will take some time to cover everything about the development of alexa skills with this plugin. |
Sure thing @marcy-terui. Here is the output from the command you requested I run.
|
@marcy-terui - were you able to find anything useful with the debug information I provided? |
@billy-bacon Thank you for your information and sorry my late reply. The change is as bellow:
Before: custom:
alexa:
vendorId: ${env:YOUR_AMAZON_VENDOR_ID}
clientId: ${env:YOUR_AMAZON_CLIENT_ID}
clientSecret: ${env:YOUR_AMAZON_CLIENT_SECRET}
skills:
- id: ${env:YOUR_ALEXA_SKILL_ID}
skillManifest:
publishingInformation:
locales:
en-US:
name: test2
apis:
custom: {}
manifestVersion: '1.0'
models:
en-US:
interactionModel:
languageModel:
invocationName: hello
intents:
- name: AMAZON.CancelIntent
samples: []
- name: AMAZON.HelpIntent
samples: []
- name: AMAZON.StopIntent
samples: []
- name: HelloWorldIntent
samples:
- hello After: custom:
alexa:
vendorId: ${env:YOUR_AMAZON_VENDOR_ID}
clientId: ${env:YOUR_AMAZON_CLIENT_ID}
clientSecret: ${env:YOUR_AMAZON_CLIENT_SECRET}
skills:
- id: ${env:YOUR_ALEXA_SKILL_ID}
manifest:
publishingInformation:
locales:
en-US:
name: test2
apis:
custom: {}
manifestVersion: '1.0'
models:
en-US:
interactionModel:
languageModel:
invocationName: hello
intents:
- name: AMAZON.CancelIntent
samples: []
- name: AMAZON.HelpIntent
samples: []
- name: AMAZON.StopIntent
samples: []
- name: HelloWorldIntent
samples:
- hello |
@marcy-terui - Thank you for the reply. I changed `bbacon@venus (feature/859855_integrate_serverless_alexa_skills_plugin ) ~/dev/clients/dillon/hoopla/hoopla-alexa-skill: SLS_DEBUG= sls alexa models --stage dev Status Code Error -------------------------------------- 404 - " \n \n<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />\n<title>Looking for something?</title>\n \n\n<body style="padding: 4em; color: black; background-color: white; font-family: Verdana,Arial,Helvetica,sans-serif;">\n\n Looking for Something?\n\nWe're sorry. The Web address you entered is not a functioning page on our site.\nPlease double-check the URL for typos and other errors. Or go to our <a href="/">home page.\n \n\nVous recherchez quelque chose?\n\nNous sommes désolés. L'adresse Web que vous avez entrée n'est pas fonctionnelle.\nVérifiez bien le lien URL ou allez à notre <a href="/">page d'accueil.\n \n\n\n\n"
Stack Trace -------------------------------------------- StatusCodeError: 404 - " \n \n<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />\n<title>Looking for something?</title>\n \n\n<body style="padding: 4em; color: black; background-color: white; font-family: Verdana,Arial,Helvetica,sans-serif;">\n\n Looking for Something?\n\nWe're sorry. The Web address you entered is not a functioning page on our site.\nPlease double-check the URL for typos and other errors. Or go to our <a href="/">home page.\n \n\nVous recherchez quelque chose?\n\nNous sommes désolés. L'adresse Web que vous avez entrée n'est pas fonctionnelle.\nVérifiez bien le lien URL ou allez à notre <a href="/">page d'accueil.\n \n\n\n\n"at new StatusCodeError (/Users/bbacon/dev/clients/dillon/hoopla/hoopla-alexa-skill/node_modules/request-promise-core/lib/errors.js:32:15) at Request.plumbing.callback (/Users/bbacon/dev/clients/dillon/hoopla/hoopla-alexa-skill/node_modules/request-promise-core/lib/plumbing.js:104:33) at Request.RP$callback [as _callback] (/Users/bbacon/dev/clients/dillon/hoopla/hoopla-alexa-skill/node_modules/request-promise-core/lib/plumbing.js:46:31) at Request.self.callback (/Users/bbacon/dev/clients/dillon/hoopla/hoopla-alexa-skill/node_modules/request/request.js:186:22) at Request.emit (events.js:159:13) at Request. (/Users/bbacon/dev/clients/dillon/hoopla/hoopla-alexa-skill/node_modules/request/request.js:1163:10) at Request.emit (events.js:159:13) at IncomingMessage. (/Users/bbacon/dev/clients/dillon/hoopla/hoopla-alexa-skill/node_modules/request/request.js:1085:12) at Object.onceWrapper (events.js:254:19) at IncomingMessage.emit (events.js:164:20) at endReadableNT (_stream_readable.js:1062:12) at process._tickCallback (internal/process/next_tick.js:152:19) From previous event: at PluginManager.invoke (/Users/bbacon/.nvm/versions/node/v9.3.0/lib/node_modules/serverless/lib/classes/PluginManager.js:372:22) at PluginManager.run (/Users/bbacon/.nvm/versions/node/v9.3.0/lib/node_modules/serverless/lib/classes/PluginManager.js:403:17) at variables.populateService.then (/Users/bbacon/.nvm/versions/node/v9.3.0/lib/node_modules/serverless/lib/Serverless.js:102:33) at runCallback (timers.js:773:18) at tryOnImmediate (timers.js:734:5) at processImmediate [as _immediateCallback] (timers.js:711:5) From previous event: at Serverless.run (/Users/bbacon/.nvm/versions/node/v9.3.0/lib/node_modules/serverless/lib/Serverless.js:89:74) at serverless.init.then (/Users/bbacon/.nvm/versions/node/v9.3.0/lib/node_modules/serverless/bin/serverless:42:50) at Get Support -------------------------------------------- Your Environment Information ----------------------------- |
I've done step-by-step guide's "Create your skill"
https://serverless.com/blog/how-to-manage-your-alexa-skills-with-serverless/
next step "serverless alexa manifests" failed(other like update/model/build also failed).
Do you have any infomation?
The text was updated successfully, but these errors were encountered: