Skip to content

Small helper library allowing Alexa.NET Skills to more easily access the Pin Confirmation functionality

License

Notifications You must be signed in to change notification settings

stoiveyp/Alexa.NET.PinConfirmation

Repository files navigation

Alexa.NET.PinConfirmation

Small helper library allowing Alexa.NET Skills to more easily access the Pin Confirmation functionality

Add Support in code

place this in your initialisation/setup code and then interaction with pin confirmation can be performed by extension methods shown below

PinConfirmationInput.AddToConnectionTask();

Add pin confirmation to your response

SkillResponse response = ...
response.AddPinConfirmation("[yourTokenHere]");

Get information once skill is resumed

if(skillRequest.Request is SessionResumedRequest sessionResumed)
{
  var result = sessionResumed.GetPinResult();
}

About

Small helper library allowing Alexa.NET Skills to more easily access the Pin Confirmation functionality

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages