1,111 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
45
views
Blazor WASM MSAL: Redirect to admin page after token expiration with localStorage credentials
I'm using Blazor WebAssembly with MSAL for authentication and storing Azure AD B2C credentials in localStorage. My setup is roughly like this:
builder.Services.AddMsalAuthentication(options =&...
0
votes
1
answer
111
views
How can I send my refresh tokens via httponly cookie to standalone blazor WebAssembly?
I've been trying for a couple days to implement refresh tokens into my ASP.NET Core Web API, but to no avail.
I've currently got an ASP.NET Core Web API that allows someone to log in with a username ...
0
votes
1
answer
118
views
Viewer SDK - Access Token Management with Automatic Routing
I am looking for guidance on how to configure authorization token management with automatic routing enabled in the Viewer SDK.
Our application sets up token refreshing using the getAccessToken ...
0
votes
0
answers
41
views
Why does my OAuth2 access token refresh on every API call after Docker deployment (works fine locally)?
I’m facing an OAuth2 token persistence issue in a Node.js backend.
Scenario
I have a Node.js backend that integrates with APIs using OAuth2.
I wrote a token manager that:
Stores the access token + ...
0
votes
0
answers
58
views
Social Login from AWS Cognito is not returning the refresh token
I created an user pool, I can login with Gmail through HostedUI successfully, but when checking the session, returned by Cognito, no refresh token is given back, only Access Token and Id Token. I ...
1
vote
0
answers
73
views
Not able to refresh JWT API key using refresh token
I am trying to access Deltek's ComputerEase API, I have the API key ID, API key & Refresh Token. Using the following code I was able to get authorization:
import requests
url = "https://api....
0
votes
1
answer
282
views
Can we use refresh token grant type with PKCE?
Is there any way to create public client that supports refresh token grant type? If not, how can I refresh tokens in my single page application?
I created spring boot authentication server
spring ...
0
votes
2
answers
83
views
OAuth 2 Token management service?
I am building an application that needs to interact with to multiple external services such as Google, Facebook, or other third party applications. To connect to all those services, I will be using ...
0
votes
1
answer
79
views
Refresh Token Rotation lead to Infinite Time logged in
Currently, I am trying to implement access token and refresh token in my application.
I am storing the refresh token in the user schema.
interface IUser {
refreshTokens: []
}
When the user logs ...
0
votes
0
answers
34
views
Ionic Angular App Issue in google sso while login using previous email
I am working on ionic app where have implemented google sso and apple sso. Previously we had issue, after even logout it was not clearing the cookies from the browser and if login again with sso it ...
0
votes
1
answer
241
views
Token refresh in Flutter with Dio interceptor
I'd need some help regarding token refresh in Flutter app which uses built-in Provider and Dio package. I use MVVM architecture with repositories and services as data layer.
I use go_router and its ...
0
votes
1
answer
118
views
How is a refresh token invalidated upon rotating it before its expiration period?
I am building an authentication using name, username and password and wants to use access and refresh token for the authorization.
To keep the user safe i come to know about an approach where you ...
0
votes
0
answers
52
views
why does google oidc refresh token and access token have same expiry of 1 hour?
I was using Google OIDC to get refresh tokens and access tokens for a continue with google option on my web page . So I used it to get an access token and refresh token. The access token lasts for an ...
0
votes
0
answers
127
views
How can I add refresh token functionality at server side?
I want to add refresh token functionality at server side in NextJS. From the server side I mean that the API that I call at server in page.js file. I am not using NextJS inbuilt backend.
Basically I ...
1
vote
0
answers
144
views
google auth2 with multi-user failed in refreshing a token, 401 Unauthorized
I've application connected to google calendar with multiple keys or users in accessing the oauth2 token. All users can register(using Servlet) and send the calendar event in around one hour after ...