2,210 questions
0
votes
0
answers
23
views
No authenticated user when logging out via RP from Duende IdentityServer
I am currently following the 2nd Quickstart of Duende IdentityServer: https://docs.duendesoftware.com/identityserver/quickstarts/2-interactive/
I have created the IdentityServer as well as the RP ...
0
votes
1
answer
86
views
AWS Cognito Google Sign-in with Next.js works, but Sign-out does not fully log the user out
I’m using AWS Cognito with Google as an Identity Provider in a Next.js app. I am using AWS managed login as well. Sign-in works correctly, tokens are received, and the user session persists. However, ...
0
votes
0
answers
71
views
App is not logged out after doing SSO sign out from other apps
I recently worked on a PHP based project and it implemented Keycloak SSO login system.
There are three apps (let's say App-1, App-2, and App-3) that are using the SSO. App-1 also implemented ...
0
votes
0
answers
51
views
HTTP/2 in my GET Request not present for one of my Endpoints endpoint in java (Springboot)
I wanted to ask that there is something wrong with one of my endpoints, the endpoint seems to be blocked for some reasons, I have other endpoints that are giving response but this one fails.See the ...
0
votes
0
answers
53
views
AWS Cognito - Logout
I am trying to use a code like the following to logout using AWS Cognito:
private navigateToLogout(): void {
try {
const clientId = '1234213421423';
const currentUrl = window....
0
votes
0
answers
56
views
Next.js : signout user do not unauthenticate the session on production why
I'm facing an inconsistent logout issue in a Next.js app using next-auth. The user is redirected after calling the logout function, and tokens are supposed to be cleared. While most of the time ...
0
votes
2
answers
145
views
user logout when browser tab is closed
I need help. "How can I log out a user in Angular when they close the browser tab instead of clicking the logout button, so that the next time they try to access the application, they have to log ...
1
vote
1
answer
91
views
Problem in logging out in Postman while sending POST Request through API
I am using POSTMAN to send API Requests.I have been logged in through API and got a token. When I try to log out using that particular token it display output as "not logged in"
This is the ...
0
votes
0
answers
18
views
Should I authenticate a client before logging out?
Before logging out, should I check for a valid JWT token? i.e. authenticate a client. Which is best? Authenticating or skipping authentication?
0
votes
1
answer
62
views
Want a customized logout warning pop up in reactjs
I have a banking website and I am implementing as case where, when a user tries to refresh browser it should show a warning popup which states that you will be sign out and if user click on that ...
1
vote
0
answers
295
views
Keycloak v26.0.2 not picking up the logout style
I created a custom keycloak theme. It works great for the login and register page, after I configured the login theme in the keycloak admin console. I created a logout.ftl to style the logout page (I ...
0
votes
1
answer
393
views
NextAuth.js Logout Not Clearing Session Across Browser Tabs
I am using NextAuth.js for authentication in my Next.js application. Everything works fine when logging in—if I log in on one tab, opening the same project in another tab automatically shows the user ...
0
votes
1
answer
206
views
Keycloak logout
I am new to Keycloak, but I have set up a Keycloak server, the installation, configuration, and access to my web application.
Authentication goes through a custom SPI for read-only access to a ...
0
votes
0
answers
43
views
Spring Boot: Warning 'Return value of the method is never used' on Logout Endpoint
Context
I'm implementing a logout feature in my Spring Boot application that clears an authentication cookie and returns a success message:
@RestController
@RequestMapping("/auth")
public ...
0
votes
3
answers
78
views
How to configure a route With InertiaJs/ Laravel
I am developing a website and testing the logout functionality. The issue I'm facing is with the Navbar, which is extended across multiple components and allows users to log out of the website. The ...