identityserver3 - IdentityServer handling timeouts and subsequent redirects -


i've implemented identityserver3 in application , has been working good. came across behaviour can't quite figure out hoping tell me i'm either doing wrong or how should doing following:

i have asp.net mvc application uses identityserver authentication. user authenticates , opens specific page within application. moves away pc, comes little later , clicks link within application (e.g. controller/action/38). application redirects user to:

http://localhost/myidentityserver/identity/connect/authorize?client_id=myapp&redirect_uri=http://localhost/myapp/controller/action/38&response_mode=form_post&response_type=id_token&scope=openid+profile+roles etc.

since root url of app (http://localhost/myapp) registered redirecturl in identityserver shows following message:

the client application not known or not authorized.

rightfully so, since controller + action aren't valid redirecturls. however, cannot image i'd have add controllers , actions redirecturl property, since take data-related parameters. surely must doing wrong what?

you're modifying redirecturi provided idsrv on each request idsrv:

remove line:

   notification.protocolmessage.redirecturi = 

Comments

Popular posts from this blog

amazon web services - S3 Pre-signed POST validate file type? -

c# - Check Keyboard Input Winforms -