
User15892550196388422787 (Customer) asked a question.
I'm implementing webauthn flow from the CLI tool.
I can successfully get the session Id.
Then I need to get the AccessToken.
I try to follow https://developer.okta.com/docs/reference/api/oidc/*authorize
q.Add("response_type", "token")
q.Add("scope", "openid")
q.Add("state", "something")
q.Add("nonce", "something_else")
q.Add("client_id", <client_id>)
q.Add("redirect_uri", "http://localhost:5000/callback")
q.Add("sessionToken", sessionToken)
If I add prompt=none then I get the error:
error=login_required&error_description=The+client+specified+not+to+prompt,+but+the+user+is+not+logged+in
even though I pass the sessionToken.
What am i doing wrong?

Also if I understand correctly from here https://devforum.okta.com/t/unit-testing-and-implicit-flow/1210/6
this should work