You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 18, 2021. It is now read-only.
I have created identity server with below given configuration. I am using implicit client flow (JavaScript sample project) to test identity server. I could able to see login screen. On successful login identity server is not redirecting to client web page.
Even when when I click logout button I will get login page as response. In other words logout link points to ( http://idsrv.local/login?message=7b..... )
I found out the problem, after tracing and seeing network tab in chrome. Below is the flow after client makes request.
HTTP GET /connect/authorize?client_id=........ (302)
HTTPS GET /login?message=..... (200)
HTTPS POST /login?message=..... (302 - Now response has idsrv cookies set)
HTTP GET /connect/authorize?client_id=..... (302 - Now request is not sending
idsrv cookies set in previous response.
Reason is, previous request/response happened
in https while this request in http)
HTTPS GET /login?message=..... (200)
I have created identity server with below given configuration. I am using implicit client flow (JavaScript sample project) to test identity server. I could able to see login screen. On successful login identity server is not redirecting to client web page.
Even when when I click logout button I will get login page as response. In other words logout link points to ( http://idsrv.local/login?message=7b..... )
What am I doing wrong here?
The text was updated successfully, but these errors were encountered: