-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Description
I added this code below to validate the request coming from Amazon
// Verifies that the request is a valid request from Amazon Alexa
var isValid = await skillRequest.ValidateRequestAsync(req, log);
if (!isValid)
{
return new BadRequestResult();
}
When I invoke the skill, the function returns a 500 status code
Looking at the logs I can see the issue is with the Verify method being missing but I'm not sure how this is possible? I've tried v1.0.0 and v1.01 and still can't get this to work?
assembly | Alexa.NET.Security.Functions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
Method not found: 'System.Threading.Tasks.Task`1<Boolean> Alexa.NET.Request.RequestVerification.Verify(System.String, System.Uri, System.String)'.
xela1601
Metadata
Metadata
Assignees
Labels
No labels