-
-
Notifications
You must be signed in to change notification settings - Fork 309
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
Can't upload skill.json with included householdList API #1419
Comments
How do you set up the permissions? I tried this example and I got no error plugins: [
// Add Jovo CLI plugins here
new AlexaCli({
// ...
files: {
'skill-package/skill.json': {
manifest: {
permissions: [
{ name: 'alexa::household:lists:read' },
{ name: 'alexa::household:lists:write' }],
},
},
},
}),
], |
Hey @aswetlow! Yes, the plugins: [
// Add Jovo CLI plugins here
new AlexaCli({
// ...
files: {
'skill-package/skill.json': {
manifest: {
permissions: [{ name: 'alexa::household:lists:read' }],
apis: {
householdList: {},
},
events: {
endpoint: {
sslCertificateType: 'Wildcard',
uri: '${JOVO_WEBHOOK_URL}',
},
subscriptions: [
{
eventName: 'ITEMS_CREATED',
},
{
eventName: 'ITEMS_UPDATED',
},
{
eventName: 'ITEMS_DELETED',
},
],
},
},
},
},
}),
], The problem here lies in the adding of |
Thank you! We do "skill enablement" in our validation process after deployment. Looks like it doesn't work for skills using the There is a workaround. You can skip validation by adding jovo deploy:platform alexa --async Maybe it makes sense to remove the |
I'm submitting a...
Expected Behavior
It should be possible to deploy a skill that utilizes the
householdList
API from Alexa.Current Behavior
I can't upload a
skill.json
which includeshouseholdList
inside theapis
object.This for example also happens for the example I included in #1418.
I receive the following error code in the console:
Error Log
Additional information
I managed it to upload the
skill.json
directly with theAsk CLI
:Your Environment
The text was updated successfully, but these errors were encountered: