Skip to content

Latest commit

 

History

History
 
 

Authentication

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Alexa Cookbook

Authentication


Account Linking with OAuth

You can prompt the user for a four-digit PIN to continue

Within the language model:

Create a PinEntryIntent with a slot called pin, of type AMAZON.FOUR_DIGIT_NUMBER. Add a sample utterance such as PinEntryIntent my pin is {pin}

Within your code: Compare the pin slot value to the correct PIN and allow the skill to proceed via an IF/ELSE block.

Back to the Home Page