How can I fix 'There was a problem with the requested skill's response' in my Alexa SkillHow can I update NodeJS and NPM to the next versions?How to build Alexa Skill with multiple custom intentsAlexa intent is not waiting for the api responseAlexa end timed out no response on .listen() NodeJSAlexa Skill not accepting intents when not opened with LaunchRequestAlexa Skill - How can I reprompt to my user that he has to use it again, if he is not saying stop?How to fallback into error when reprompt is processed in Alexa SkillAlexa skill problem with response after response is already returnedHandle “Requested skill took too long to response” in AlexaCreating Alexa Skill with a constant audio response

Who goes first? Person disembarking bus or the bicycle?

Computer name naming convention for security

Can a USB hub be used to access a drive from two devices?

Bringing coumarin-containing liquor into the USA

What is the maximum amount of diamond in one Minecraft game?

How important is it for multiple POVs to run chronologically?

Passwordless authentication - how invalidate login code

How can I use my cell phone's light as a reading light?

Better random (unique) file name

Implicit conversion between decimals with different precisions

Why do most airliners have underwing engines, while business jets have rear-mounted engines?

How to reclaim personal item I've lent to the office without burning bridges?

Is conquering your neighbors to fight a greater enemy a valid strategy?

Why does this function pointer assignment work when assigned directly but not with the conditional operator?

What are some bad ways to subvert tropes?

Machine Learning Golf: Multiplication

What is the highest level of accuracy in motion control a Victorian society could achieve?

Why does mean tend be more stable in different samples than median?

How to deal with a Murder Hobo Paladin?

How many Jimmys can fit?

How do amateur satellites stay consistently in the amateur-sat bands acoss the globe?

How do I check that users don't write down their passwords?

Is there a minimum amount of electricity that can be fed back into the grid?

How do resistors generate different heat if we make the current fixed and changed the voltage and resistance? Notice the flow of charge is constant



How can I fix 'There was a problem with the requested skill's response' in my Alexa Skill


How can I update NodeJS and NPM to the next versions?How to build Alexa Skill with multiple custom intentsAlexa intent is not waiting for the api responseAlexa end timed out no response on .listen() NodeJSAlexa Skill not accepting intents when not opened with LaunchRequestAlexa Skill - How can I reprompt to my user that he has to use it again, if he is not saying stop?How to fallback into error when reprompt is processed in Alexa SkillAlexa skill problem with response after response is already returnedHandle “Requested skill took too long to response” in AlexaCreating Alexa Skill with a constant audio response






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I am making a new skill with Alexa, but when I use the simulator on the 'test' tab, I get the error:




There was a problem with the requested skill's response.




This is my first skill, and I am basically just editing the sample.



It was working, and I am not sure what I did to stop it.



Your help would be greatly appreciated!



// This sample demonstrates handling intents from an Alexa skill using the Alexa Skills Kit SDK (v2).
// Please visit https://alexa.design/cookbook for additional examples on implementing slots, dialog management,
// session persistence, api calls, and more.
const Alexa = require('ask-sdk-core');

const StartRequestHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'LaunchRequest';
,
handle(handlerInput)
const speechText = 'Welcome to Dawlish College E-praise! How can I help?';
return handlerInput.responseBuilder
.speak(speechText)
.reprompt(speechText)
.getResponse();

;

const twitterIntentHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'IntentRequest'
&& handlerInput.requestEnvelope.request.intent.name === 'twitter';
,
handle(handlerInput)
const speechText = 'You can find our twitter at. at Dawlish C E-praise!';
return handlerInput.responseBuilder
.speak(speechText)
//.reprompt('add a reprompt if you want to keep the session open for the user to respond')
.getResponse();

;

const facebookIntentHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'IntentRequest'
&& handlerInput.requestEnvelope.request.intent.name === 'facebook';
,
handle(handlerInput)
const speechText = 'You can find our facebook at. at Dawlish C E-praise!';
return handlerInput.responseBuilder
.speak(speechText)
//.reprompt('add a reprompt if you want to keep the session open for the user to respond')
.getResponse();

;

const instagramIntentHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'IntentRequest'
&& handlerInput.requestEnvelope.request.intent.name === 'instagram';
,
handle(handlerInput)
const speechText = 'You can find our instagram at. at Dawlish C E-praise!';
return handlerInput.responseBuilder
.speak(speechText)
//.reprompt('add a reprompt if you want to keep the session open for the user to respond')
.getResponse();

;

const websiteIntentHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'IntentRequest'
&& handlerInput.requestEnvelope.request.intent.name === 'website';
,
handle(handlerInput)
const speechText = 'You can find our website at www.dawlish c e praise.co.uk';
return handlerInput.responseBuilder
.speak(speechText)
//.reprompt('add a reprompt if you want to keep the session open for the user to respond')
.getResponse();

;
const HelpIntentHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'IntentRequest'
&& handlerInput.requestEnvelope.request.intent.name === 'AMAZON.HelpIntent';
,
handle(handlerInput)
const speechText = 'You can find a full list of commands at www.dawlish c e praise.co.uk/alexa';

return handlerInput.responseBuilder
.speak(speechText)
.reprompt(speechText)
.getResponse();

;

const CancelAndStopIntentHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'IntentRequest'
&& (handlerInput.requestEnvelope.request.intent.name === 'AMAZON.CancelIntent'
,
handle(handlerInput)
const speechText = 'Goodbye!';
return handlerInput.responseBuilder
.speak(speechText)
.getResponse();

;

const SessionEndedRequestHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'SessionEndedRequest';
,
handle(handlerInput)
// Any cleanup logic goes here.
return handlerInput.responseBuilder.getResponse();

;


// The intent reflector is used for interaction model testing and debugging.
// It will simply repeat the intent the user said. You can create custom handlers
// for your intents by defining them above, then also adding them to the request
// handler chain below.
const IntentReflectorHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'IntentRequest';
,
handle(handlerInput)
const intentName = handlerInput.requestEnvelope.request.intent.name;
const speechText = `You just triggered $intentName`;

return handlerInput.responseBuilder
.speak(speechText)
//.reprompt('add a reprompt if you want to keep the session open for the user to respond')
.getResponse();

;


// Generic error handling to capture any syntax or routing errors. If you receive an error
// stating the request handler chain is not found, you have not implemented a handler for
// the intent being invoked or included it in the skill builder below.
const ErrorHandler =
canHandle()
return true;
,
handle(handlerInput, error)
console.log(`~~~~ Error handled: $error.message`);
const speechText = `Sorry, I couldn't understand what you said. Please try again.`;

return handlerInput.responseBuilder
.speak(speechText)
.reprompt(speechText)
.getResponse();

;

// This handler acts as the entry point for your skill, routing all request and response
// payloads to the handlers above. Make sure any new handlers or interceptors you've
// defined are included below. The order matters - they're processed top to bottom.
exports.handler = Alexa.SkillBuilders.custom()
.addRequestHandlers(
StartRequestHandler,
websiteIntentHandler,
twitterIntentHandler,
facebookIntentHandler,
instagramIntentHandler,
HelpIntentHandler,
CancelAndStopIntentHandler,
SessionEndedRequestHandler,
IntentReflectorHandler) // make sure IntentReflectorHandler is last so it doesn't override your custom intent handlers
.addErrorHandlers(
ErrorHandler)
.lambda();










share|improve this question
























  • It is still not working. Any ideas?

    – Jamie Bally
    Apr 27 at 7:40

















0















I am making a new skill with Alexa, but when I use the simulator on the 'test' tab, I get the error:




There was a problem with the requested skill's response.




This is my first skill, and I am basically just editing the sample.



It was working, and I am not sure what I did to stop it.



Your help would be greatly appreciated!



// This sample demonstrates handling intents from an Alexa skill using the Alexa Skills Kit SDK (v2).
// Please visit https://alexa.design/cookbook for additional examples on implementing slots, dialog management,
// session persistence, api calls, and more.
const Alexa = require('ask-sdk-core');

const StartRequestHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'LaunchRequest';
,
handle(handlerInput)
const speechText = 'Welcome to Dawlish College E-praise! How can I help?';
return handlerInput.responseBuilder
.speak(speechText)
.reprompt(speechText)
.getResponse();

;

const twitterIntentHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'IntentRequest'
&& handlerInput.requestEnvelope.request.intent.name === 'twitter';
,
handle(handlerInput)
const speechText = 'You can find our twitter at. at Dawlish C E-praise!';
return handlerInput.responseBuilder
.speak(speechText)
//.reprompt('add a reprompt if you want to keep the session open for the user to respond')
.getResponse();

;

const facebookIntentHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'IntentRequest'
&& handlerInput.requestEnvelope.request.intent.name === 'facebook';
,
handle(handlerInput)
const speechText = 'You can find our facebook at. at Dawlish C E-praise!';
return handlerInput.responseBuilder
.speak(speechText)
//.reprompt('add a reprompt if you want to keep the session open for the user to respond')
.getResponse();

;

const instagramIntentHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'IntentRequest'
&& handlerInput.requestEnvelope.request.intent.name === 'instagram';
,
handle(handlerInput)
const speechText = 'You can find our instagram at. at Dawlish C E-praise!';
return handlerInput.responseBuilder
.speak(speechText)
//.reprompt('add a reprompt if you want to keep the session open for the user to respond')
.getResponse();

;

const websiteIntentHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'IntentRequest'
&& handlerInput.requestEnvelope.request.intent.name === 'website';
,
handle(handlerInput)
const speechText = 'You can find our website at www.dawlish c e praise.co.uk';
return handlerInput.responseBuilder
.speak(speechText)
//.reprompt('add a reprompt if you want to keep the session open for the user to respond')
.getResponse();

;
const HelpIntentHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'IntentRequest'
&& handlerInput.requestEnvelope.request.intent.name === 'AMAZON.HelpIntent';
,
handle(handlerInput)
const speechText = 'You can find a full list of commands at www.dawlish c e praise.co.uk/alexa';

return handlerInput.responseBuilder
.speak(speechText)
.reprompt(speechText)
.getResponse();

;

const CancelAndStopIntentHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'IntentRequest'
&& (handlerInput.requestEnvelope.request.intent.name === 'AMAZON.CancelIntent'
,
handle(handlerInput)
const speechText = 'Goodbye!';
return handlerInput.responseBuilder
.speak(speechText)
.getResponse();

;

const SessionEndedRequestHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'SessionEndedRequest';
,
handle(handlerInput)
// Any cleanup logic goes here.
return handlerInput.responseBuilder.getResponse();

;


// The intent reflector is used for interaction model testing and debugging.
// It will simply repeat the intent the user said. You can create custom handlers
// for your intents by defining them above, then also adding them to the request
// handler chain below.
const IntentReflectorHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'IntentRequest';
,
handle(handlerInput)
const intentName = handlerInput.requestEnvelope.request.intent.name;
const speechText = `You just triggered $intentName`;

return handlerInput.responseBuilder
.speak(speechText)
//.reprompt('add a reprompt if you want to keep the session open for the user to respond')
.getResponse();

;


// Generic error handling to capture any syntax or routing errors. If you receive an error
// stating the request handler chain is not found, you have not implemented a handler for
// the intent being invoked or included it in the skill builder below.
const ErrorHandler =
canHandle()
return true;
,
handle(handlerInput, error)
console.log(`~~~~ Error handled: $error.message`);
const speechText = `Sorry, I couldn't understand what you said. Please try again.`;

return handlerInput.responseBuilder
.speak(speechText)
.reprompt(speechText)
.getResponse();

;

// This handler acts as the entry point for your skill, routing all request and response
// payloads to the handlers above. Make sure any new handlers or interceptors you've
// defined are included below. The order matters - they're processed top to bottom.
exports.handler = Alexa.SkillBuilders.custom()
.addRequestHandlers(
StartRequestHandler,
websiteIntentHandler,
twitterIntentHandler,
facebookIntentHandler,
instagramIntentHandler,
HelpIntentHandler,
CancelAndStopIntentHandler,
SessionEndedRequestHandler,
IntentReflectorHandler) // make sure IntentReflectorHandler is last so it doesn't override your custom intent handlers
.addErrorHandlers(
ErrorHandler)
.lambda();










share|improve this question
























  • It is still not working. Any ideas?

    – Jamie Bally
    Apr 27 at 7:40













0












0








0


0






I am making a new skill with Alexa, but when I use the simulator on the 'test' tab, I get the error:




There was a problem with the requested skill's response.




This is my first skill, and I am basically just editing the sample.



It was working, and I am not sure what I did to stop it.



Your help would be greatly appreciated!



// This sample demonstrates handling intents from an Alexa skill using the Alexa Skills Kit SDK (v2).
// Please visit https://alexa.design/cookbook for additional examples on implementing slots, dialog management,
// session persistence, api calls, and more.
const Alexa = require('ask-sdk-core');

const StartRequestHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'LaunchRequest';
,
handle(handlerInput)
const speechText = 'Welcome to Dawlish College E-praise! How can I help?';
return handlerInput.responseBuilder
.speak(speechText)
.reprompt(speechText)
.getResponse();

;

const twitterIntentHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'IntentRequest'
&& handlerInput.requestEnvelope.request.intent.name === 'twitter';
,
handle(handlerInput)
const speechText = 'You can find our twitter at. at Dawlish C E-praise!';
return handlerInput.responseBuilder
.speak(speechText)
//.reprompt('add a reprompt if you want to keep the session open for the user to respond')
.getResponse();

;

const facebookIntentHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'IntentRequest'
&& handlerInput.requestEnvelope.request.intent.name === 'facebook';
,
handle(handlerInput)
const speechText = 'You can find our facebook at. at Dawlish C E-praise!';
return handlerInput.responseBuilder
.speak(speechText)
//.reprompt('add a reprompt if you want to keep the session open for the user to respond')
.getResponse();

;

const instagramIntentHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'IntentRequest'
&& handlerInput.requestEnvelope.request.intent.name === 'instagram';
,
handle(handlerInput)
const speechText = 'You can find our instagram at. at Dawlish C E-praise!';
return handlerInput.responseBuilder
.speak(speechText)
//.reprompt('add a reprompt if you want to keep the session open for the user to respond')
.getResponse();

;

const websiteIntentHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'IntentRequest'
&& handlerInput.requestEnvelope.request.intent.name === 'website';
,
handle(handlerInput)
const speechText = 'You can find our website at www.dawlish c e praise.co.uk';
return handlerInput.responseBuilder
.speak(speechText)
//.reprompt('add a reprompt if you want to keep the session open for the user to respond')
.getResponse();

;
const HelpIntentHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'IntentRequest'
&& handlerInput.requestEnvelope.request.intent.name === 'AMAZON.HelpIntent';
,
handle(handlerInput)
const speechText = 'You can find a full list of commands at www.dawlish c e praise.co.uk/alexa';

return handlerInput.responseBuilder
.speak(speechText)
.reprompt(speechText)
.getResponse();

;

const CancelAndStopIntentHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'IntentRequest'
&& (handlerInput.requestEnvelope.request.intent.name === 'AMAZON.CancelIntent'
,
handle(handlerInput)
const speechText = 'Goodbye!';
return handlerInput.responseBuilder
.speak(speechText)
.getResponse();

;

const SessionEndedRequestHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'SessionEndedRequest';
,
handle(handlerInput)
// Any cleanup logic goes here.
return handlerInput.responseBuilder.getResponse();

;


// The intent reflector is used for interaction model testing and debugging.
// It will simply repeat the intent the user said. You can create custom handlers
// for your intents by defining them above, then also adding them to the request
// handler chain below.
const IntentReflectorHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'IntentRequest';
,
handle(handlerInput)
const intentName = handlerInput.requestEnvelope.request.intent.name;
const speechText = `You just triggered $intentName`;

return handlerInput.responseBuilder
.speak(speechText)
//.reprompt('add a reprompt if you want to keep the session open for the user to respond')
.getResponse();

;


// Generic error handling to capture any syntax or routing errors. If you receive an error
// stating the request handler chain is not found, you have not implemented a handler for
// the intent being invoked or included it in the skill builder below.
const ErrorHandler =
canHandle()
return true;
,
handle(handlerInput, error)
console.log(`~~~~ Error handled: $error.message`);
const speechText = `Sorry, I couldn't understand what you said. Please try again.`;

return handlerInput.responseBuilder
.speak(speechText)
.reprompt(speechText)
.getResponse();

;

// This handler acts as the entry point for your skill, routing all request and response
// payloads to the handlers above. Make sure any new handlers or interceptors you've
// defined are included below. The order matters - they're processed top to bottom.
exports.handler = Alexa.SkillBuilders.custom()
.addRequestHandlers(
StartRequestHandler,
websiteIntentHandler,
twitterIntentHandler,
facebookIntentHandler,
instagramIntentHandler,
HelpIntentHandler,
CancelAndStopIntentHandler,
SessionEndedRequestHandler,
IntentReflectorHandler) // make sure IntentReflectorHandler is last so it doesn't override your custom intent handlers
.addErrorHandlers(
ErrorHandler)
.lambda();










share|improve this question
















I am making a new skill with Alexa, but when I use the simulator on the 'test' tab, I get the error:




There was a problem with the requested skill's response.




This is my first skill, and I am basically just editing the sample.



It was working, and I am not sure what I did to stop it.



Your help would be greatly appreciated!



// This sample demonstrates handling intents from an Alexa skill using the Alexa Skills Kit SDK (v2).
// Please visit https://alexa.design/cookbook for additional examples on implementing slots, dialog management,
// session persistence, api calls, and more.
const Alexa = require('ask-sdk-core');

const StartRequestHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'LaunchRequest';
,
handle(handlerInput)
const speechText = 'Welcome to Dawlish College E-praise! How can I help?';
return handlerInput.responseBuilder
.speak(speechText)
.reprompt(speechText)
.getResponse();

;

const twitterIntentHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'IntentRequest'
&& handlerInput.requestEnvelope.request.intent.name === 'twitter';
,
handle(handlerInput)
const speechText = 'You can find our twitter at. at Dawlish C E-praise!';
return handlerInput.responseBuilder
.speak(speechText)
//.reprompt('add a reprompt if you want to keep the session open for the user to respond')
.getResponse();

;

const facebookIntentHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'IntentRequest'
&& handlerInput.requestEnvelope.request.intent.name === 'facebook';
,
handle(handlerInput)
const speechText = 'You can find our facebook at. at Dawlish C E-praise!';
return handlerInput.responseBuilder
.speak(speechText)
//.reprompt('add a reprompt if you want to keep the session open for the user to respond')
.getResponse();

;

const instagramIntentHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'IntentRequest'
&& handlerInput.requestEnvelope.request.intent.name === 'instagram';
,
handle(handlerInput)
const speechText = 'You can find our instagram at. at Dawlish C E-praise!';
return handlerInput.responseBuilder
.speak(speechText)
//.reprompt('add a reprompt if you want to keep the session open for the user to respond')
.getResponse();

;

const websiteIntentHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'IntentRequest'
&& handlerInput.requestEnvelope.request.intent.name === 'website';
,
handle(handlerInput)
const speechText = 'You can find our website at www.dawlish c e praise.co.uk';
return handlerInput.responseBuilder
.speak(speechText)
//.reprompt('add a reprompt if you want to keep the session open for the user to respond')
.getResponse();

;
const HelpIntentHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'IntentRequest'
&& handlerInput.requestEnvelope.request.intent.name === 'AMAZON.HelpIntent';
,
handle(handlerInput)
const speechText = 'You can find a full list of commands at www.dawlish c e praise.co.uk/alexa';

return handlerInput.responseBuilder
.speak(speechText)
.reprompt(speechText)
.getResponse();

;

const CancelAndStopIntentHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'IntentRequest'
&& (handlerInput.requestEnvelope.request.intent.name === 'AMAZON.CancelIntent'
,
handle(handlerInput)
const speechText = 'Goodbye!';
return handlerInput.responseBuilder
.speak(speechText)
.getResponse();

;

const SessionEndedRequestHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'SessionEndedRequest';
,
handle(handlerInput)
// Any cleanup logic goes here.
return handlerInput.responseBuilder.getResponse();

;


// The intent reflector is used for interaction model testing and debugging.
// It will simply repeat the intent the user said. You can create custom handlers
// for your intents by defining them above, then also adding them to the request
// handler chain below.
const IntentReflectorHandler =
canHandle(handlerInput)
return handlerInput.requestEnvelope.request.type === 'IntentRequest';
,
handle(handlerInput)
const intentName = handlerInput.requestEnvelope.request.intent.name;
const speechText = `You just triggered $intentName`;

return handlerInput.responseBuilder
.speak(speechText)
//.reprompt('add a reprompt if you want to keep the session open for the user to respond')
.getResponse();

;


// Generic error handling to capture any syntax or routing errors. If you receive an error
// stating the request handler chain is not found, you have not implemented a handler for
// the intent being invoked or included it in the skill builder below.
const ErrorHandler =
canHandle()
return true;
,
handle(handlerInput, error)
console.log(`~~~~ Error handled: $error.message`);
const speechText = `Sorry, I couldn't understand what you said. Please try again.`;

return handlerInput.responseBuilder
.speak(speechText)
.reprompt(speechText)
.getResponse();

;

// This handler acts as the entry point for your skill, routing all request and response
// payloads to the handlers above. Make sure any new handlers or interceptors you've
// defined are included below. The order matters - they're processed top to bottom.
exports.handler = Alexa.SkillBuilders.custom()
.addRequestHandlers(
StartRequestHandler,
websiteIntentHandler,
twitterIntentHandler,
facebookIntentHandler,
instagramIntentHandler,
HelpIntentHandler,
CancelAndStopIntentHandler,
SessionEndedRequestHandler,
IntentReflectorHandler) // make sure IntentReflectorHandler is last so it doesn't override your custom intent handlers
.addErrorHandlers(
ErrorHandler)
.lambda();







node.js alexa alexa-skill






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 26 at 17:19







Jamie Bally

















asked Mar 25 at 20:46









Jamie BallyJamie Bally

13 bronze badges




13 bronze badges












  • It is still not working. Any ideas?

    – Jamie Bally
    Apr 27 at 7:40

















  • It is still not working. Any ideas?

    – Jamie Bally
    Apr 27 at 7:40
















It is still not working. Any ideas?

– Jamie Bally
Apr 27 at 7:40





It is still not working. Any ideas?

– Jamie Bally
Apr 27 at 7:40












0






active

oldest

votes










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55346160%2fhow-can-i-fix-there-was-a-problem-with-the-requested-skills-response-in-my-al%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55346160%2fhow-can-i-fix-there-was-a-problem-with-the-requested-skills-response-in-my-al%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript