You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The alexa testing tool now sends unix timestamp as timestamp in request rather than formatted date. which causes failed to parse string exception and crashes the application.
The text was updated successfully, but these errors were encountered:
Just for people looking for a quick workaround:
Changing line 18 in Request.php from $this->timestamp = new DateTime($data['request']['timestamp']);
to $this->timestamp = DateTime::createFromFormat('U', $data['request']['timestamp']);
solves this issue.
The alexa testing tool now sends unix timestamp as timestamp in request rather than formatted date. which causes failed to parse string exception and crashes the application.
The text was updated successfully, but these errors were encountered: