Closed S43534 closed 7 years ago
It was improved by @Olofguard lately. Please see https://github.com/develpr/alexa-app/commits/master/src/Response/Directives/Dialog/Delegate.php - it has some documentation.
I use it something like this:
if (array_get(Alexa::request(), 'request.dialogState') == 'STARTED' || array_get(Alexa::request(), 'request.dialogState') == 'IN_PROGRESS') {
return (new AlexaResponse())->endSession(false)->withDirective(new Delegate());
}
@S43534 Works like charm. Thanks
@S43534 Could you provide example for delegate feature?