Using JWT as Authentication for Chatbot (Dialogflow/Alexa)
0
I need to use Authentication in Dialogflow or Alexa or Oracle Bot. I have a link from the 3rd party where it will redirect to the login page if the user is not logged in to that site and provides the jwt token in the JSON format: www.thirdparty.com/gettoken { "username" : "ABC", "jwt" : asddasdadasdasdasd, "expires" : 1000000 //ms } How to use this as Authentication? Like it will open popup and ask for Login to 3rd party and once login successful it will send the jwt token back to the bot so that that token can be used for all web service call to the 3rd party system. I can use this token but getting that token is where I need help. Note: I am new to this scenario, googled many blogs but didnt find accurate response.
...