Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
256 views
in Technique[技术] by (71.8m points)

asp.net web api2 - Can i use my custom login in Alexa Account Linking?

I would use my Web API project to built an Alexa skill, to use it the user has to be signed-in and then it will just make simple request which will return a simple data to Alexa so I have to use Alexa Account Linking but if it's possible I would reuse my existing login API to do so...

My login API looks like this:

<HttpPost()>
<Route("login")>
Public Function GetLogin(data As Utenti.Login)
    If data.username = "" Or data.password = "" Then
        Return Nothing
    End If

    Dim utenti As Utenti = New Utenti
    Return utenti.UserExists(data.username, data.password)

End Function

And returns a JWT token..

But is it possible to use that API in Alexa Account Linking? If so how could I use it?

question from:https://stackoverflow.com/questions/65559660/can-i-use-my-custom-login-in-alexa-account-linking

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...