Replies: 1 comment 5 replies
-
Hi @dana-n I believe you also need to set the client.BackChannelLogoutSessionRequired = true; Here are the integration tests that run both IS and BFF together: |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am running Identity Server and another .NET app with BFF and I am trying to get Identity Server to issue a back-channel logout request. Based on the documentation, it is supposed to happen automagically. On Identity Server, the client is configured like this:
The
AccountController
has an instance ofSignInManager<TUser>
and we are signing users out by callingSignOutAsync()
. The expectation is that this should in turn be sending a back-channel logout request to the BFF, but I do not believe this is happening. I have added various breakpoints and done some pair programming to double check my configuration. But I do not believe the backchannel logout request is being sent at all.Is there something else that needs to happen in order for back-channel logout requests to get issued to the
/bff/backchannel
endpoint? Or is what I have described supposed to be enough?Beta Was this translation helpful? Give feedback.
All reactions