Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
30 views

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 =&...
khalil hajri's user avatar
0 votes
1 answer
84 views

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 ...
jason van willigen's user avatar
0 votes
1 answer
112 views

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 ...
Anthony's user avatar
0 votes
0 answers
40 views

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 + ...
Ayyappan's user avatar
0 votes
0 answers
57 views

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 ...
user1869935's user avatar
1 vote
0 answers
71 views

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....
Raghunandan's user avatar
0 votes
1 answer
212 views

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 ...
udith kavinda's user avatar
0 votes
2 answers
77 views

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 ...
Pepria's user avatar
  • 406
0 votes
1 answer
74 views

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 ...
sahilatahar's user avatar
0 votes
0 answers
32 views

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 ...
Snehil Sparsh's user avatar
0 votes
1 answer
205 views

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 ...
mmozedev's user avatar
0 votes
1 answer
107 views

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 ...
Arjit Khare's user avatar
0 votes
0 answers
45 views

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 ...
Aces's user avatar
  • 51
0 votes
0 answers
126 views

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 ...
Mandeep Singh's user avatar
1 vote
0 answers
144 views

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 ...
PeterL355's user avatar
1 vote
0 answers
281 views

I’m integrating Zoho CRM into my FastAPI backend and handling OAuth2 tokens like this: I am giving multiple request togather to update or created data in different modules. I use a refresh_token to ...
Roshni Hirani's user avatar
0 votes
0 answers
90 views

Environment bun v1.2.5 Operating System: Windows_NT Node Version: v22.14.0 Nuxt Version: 3.16.0 CLI Version: 3.23.0 Nitro Version: 2.11.6 Package Manager: [email protected] Builder: ...
dickhorror's user avatar
0 votes
1 answer
389 views

I’m working on a front-end project using Next.js 15, where the backend is separate and responsible for user authentication. The flow is as follows: I send the user credentials (email and password) ...
Amr Gaafer's user avatar
0 votes
0 answers
63 views

I'm using the access and refresh token flow for authentication in my app. The refresh token is stored in an HTTP-only cookie, while the access token is stored in memory (using Redux Toolkit) on the ...
Abdelrahman Emad's user avatar
0 votes
0 answers
138 views

What I want I am developing an app in Next.js 15, and for authorization, I want to use JWT and Refresh Token, following this process: When a user visits a restricted page, the system checks whether ...
user2611485's user avatar
0 votes
1 answer
76 views

I followed the guide for refresh token rotation and it is working for me. When I fetch the session from my Next frontend it does correctly refresh the token if needed. I've found, however, that if I ...
keybored's user avatar
  • 5,268
0 votes
0 answers
55 views

I am working on a movie project where when i log in, it gives me a new access token every time i log in. expiration time of access token is 50 seconds. when i log in after even 4 seconds, it changes. ...
user30039244's user avatar
0 votes
1 answer
206 views

That's my YARP configuration: builder.Services.AddReverseProxy() .LoadFromConfig(builder.Configuration.GetRequiredSection("ReverseProxy")) .AddTransforms(builder => { ...
Szyszka947's user avatar
  • 1,048
0 votes
1 answer
125 views

I'm trying to integrate with the Zoho CRM API using Python, and I need to generate an authorization code from a given scope (ZohoCRM.modules.ALL) and then use that authorization code to generate a ...
Roshni Hirani's user avatar
0 votes
1 answer
474 views

I am using n8n and need to automate the refresh of AWS Cognito OAuth tokens. Currently, I have to manually refresh the token every day, but I want to set up an automated process that ensures the token ...
dhruv's user avatar
  • 1
0 votes
0 answers
124 views

I have an application that uses Keycloak SSO for authenticaton. I have a confidential client registered on Keycloak. At the moment, for each HTTPS request from my front end to back end, I send the ...
ahbyz's user avatar
  • 15
0 votes
0 answers
138 views

I have embedded a PowerBI report using 'User owns data' concept. It's working as expected. After 60 minutes the token expires regardless of user is active on the report or not. I added a setInterval ...
Bopsi's user avatar
  • 2,526
0 votes
0 answers
42 views

I am using a JWT for authentication to my backend, let's say at "http://myapp.com/backend". The token is stored in a cookie, which I read and send in a "Authorization: Bearer" ...
JulienD's user avatar
  • 7,323
-5 votes
1 answer
663 views

i want to use laravel passport to generate refresh and access tokens i followed this Article : https://dev.to/mahmudulhsn/laravel-passport-api-authentication-with-access-and-refresh-token-16d0 but ...
user24914143's user avatar
1 vote
0 answers
39 views

I am trying to login and fetch the user details. When I insert the mapVendorNumber and username strings, the code will combine the two as a final username (formattedUsername), then I am using a token ...
Mark Kipchumba's user avatar
0 votes
1 answer
218 views

I am using the aad_oauth library in my Flutter app for Microsoft authentication. The authentication flow seems to work, but when I attempt to retrieve the refresh token, it returns null. Also I'm ...
Jay Parmar's user avatar
0 votes
0 answers
25 views

Looking for the inbuilt method to refresh the ms aad sign-in key(which is getting refreshed by microsoft intra) at regular interval using the microsoft library identify model.
Gautham_Samy's user avatar
1 vote
0 answers
30 views

I'm new to React and found a strange behavior inside useLayoutEffect function in my custom context (AuthContext - simple context to work with jwt and refresh token). The problem: axios inside ...
Quikler's user avatar
  • 190
2 votes
2 answers
383 views

I’m using JWTs for authentication with an accessToken and a refreshToken. The accessToken is short-lived (e.g., 15 minutes). The refreshToken is long-lived (e.g., 7 days). When the client uses the /...
taytaybear's user avatar
0 votes
1 answer
201 views

I am using UseOpenIdConnectAuthentication I have added scope as offline_access but if use below snippet then context.ProtocolMessage.RefreshToken. is not being found. Can anyone please help here? ...
Sachit Murarka's user avatar
0 votes
1 answer
106 views

I am trying to implement the the refresh jwt token mechanism in an interceptor. I am following the accepted answer way in this post Angular - Waiting for refresh token function to finish before ...
Pawan Nogariya's user avatar
-2 votes
1 answer
100 views

Anyone know to solve this problem? if i do a post request on url http://127.0.0.1:8000/oauth/token using the parameters directly in postman, it does provides me access token and refresh token. But ...
SWAFWAN P P's user avatar
1 vote
0 answers
55 views

In my web app I don't have users or anything like that. I have a simple GET request https://api.ebay.com/buy/browse/v1/item_summary/search?q=\ to get some eBay products. The things is that the token I ...
Nick Garbalau's user avatar
0 votes
0 answers
30 views

I am working on implementing a refresh token mechanism in an OkHttp Interceptor, but it keeps iterating forever when the token refresh is needed. The issue seems to be that the responseCount(Response ...
Cristi Dumitrache's user avatar
4 votes
1 answer
765 views

I'm willing to add some kind of Google Drive synchronization to my (native) android app - no backend involved (everything will happen in the app). As seen in the Google Identity documentation, I'm ...
Renaud Cerrato's user avatar
0 votes
1 answer
1k views

I have registered an application in Microsoft Entra as an SPA multitanent application with the permissions as Files.ReadWrite,offline_access and User.Read. I use MSAL library in my frontend .I am able ...
akaparadox's user avatar
0 votes
0 answers
55 views

I am trying to figure out if there is a way to get a refresh token for the Google Photos Library API. It seems like Google Photos Library does not support refresh tokens, because the photos are user ...
Willé Nel's user avatar
0 votes
0 answers
417 views

I have Entra Hybrid setup where on prem AD is connected to Azure AD using AzureAD Connect. From a domain joined computer, if user logs in with username/password, PRT is available and user can open ...
HNR's user avatar
  • 111
0 votes
0 answers
126 views

I implemented custom authentication for logging into a React app using Web3. Currently, I can authenticate by generating a custom JWT with the Supabase SDK in .NET, but the token is only valid for its ...
Maxime Gagné's user avatar
1 vote
1 answer
98 views

An OpenID Connect authentication process for native apps can optionally return a long-lived refresh token that can be securely stored on the device. This allows users to subsequently use a pass-code ...
Ryan.Bartsch's user avatar
  • 4,308
0 votes
0 answers
177 views

I'm using Iron-Session in a Next.js application to manage user sessions. The problem arises when I attempt to refresh the access token after it expires (HTTP 401 Unauthorized error). Here’s the ...
The Gentelmen 24's user avatar
-1 votes
1 answer
67 views

I am using Spring boot 3.3 with below configuration Application.yaml :----- spring: security: oauth2: client: registration: google: client-id: xxxx client-secret: xx scope: profile, email, openid ...
Alok Mishra's user avatar
1 vote
0 answers
71 views

To integrate google-calendar in my backend i needs the end-user refresh token from google. the needs is to reuse this refresh_token to push data into the end-user calendar when i get events in my ...
Clément Gayet's user avatar
0 votes
0 answers
30 views

im'm making a fullstack application with next js. i want to use both refresh token and access token with JWT. this is very important. I'm using jwt and next js. not oauth etc... i had maked my tokens ...
soheil's user avatar
  • 103
0 votes
0 answers
51 views

I'm working on a Rails application integrated with the NetDocuments API, where multiple users access a single service account. The API uses single-use refresh tokens to obtain new access tokens. ...
Pratham Majithia's user avatar

1
2 3 4 5
23