1,123
questions
0
votes
0
answers
20
views
Refresh token for Google Sign In with Credential Manager
Is there a way to silently refresh tokens with the new Google Sign-In (Credential Manager)?
The legacy Google Sign-In had a silentSignIn method, which the Credential Manager lacks. How can I refresh ...
0
votes
0
answers
26
views
Microsoft Graph Java SDK invalidate refresh token or user session is not working
I am looking to invalidate or revoke refresh tokens when a User sign out. I would also like to invalidate access tokens provided from Microsoft, but that don't seem to be possible. From what I have ...
1
vote
0
answers
79
views
Is the Main Purpose of Refresh Tokens in OAuth for Security or Reducing Token Management Overhead?
I've often seen explanations about access tokens and refresh tokens focusing on security reasons. And mostly from the client's perspective—explaining why the client needs two different tokens—rather ...
0
votes
0
answers
9
views
Why am I not getting a refresh_token when I contact the token server?
I'm contacting the auth api and I'm getting an authorization code. But once I send it to the token server, I only get an access token and no refresh token with it. I'm including "access_type=...
0
votes
0
answers
25
views
How do I integrate with Meta Ads with a never expiring access token?
I wish to integrate with Meta Ads to get data on Ads spends, Campaigns, etc. I am able to integrate with Meta with Expiring Access Tokens which are Valid for 60 days. After which the user has to re-...
0
votes
0
answers
76
views
Permission Revoke Issue in MS Graph API Token (OAuth 2.0 Authorization Code Flow)
Description:
I’m using OAuth 2.0 Authorization Code Flow with the Microsoft Graph API to authenticate users and access resources like emails, profile information, etc. Initially, everything works fine,...
0
votes
0
answers
48
views
Access and refresh token management in nest js
Why when logging in through Postman it returns a refresh token and an access token, but when I log in again through Postman, it issues new refresh and access tokens?
I think it's not a good practice ...
0
votes
0
answers
27
views
Trying to get a MS refresh token using fiddler for PowerShell authentication
We are using some old PowerShell script which is using a refresh token. It was working fine on the old server, but we try to migrate this script to another server. On this new server we need once a ...
-1
votes
1
answer
24
views
Understanding the Purpose of Refresh Tokens
I don't understand the purpose of refresh tokens and why they are used when it seems unnecessary.
If the security concern is that access tokens may be stolen, they will become invalid after a while. ...
1
vote
2
answers
122
views
401 Unauthorized Error during token refresh API call
I can't solve the implementation of refresh tokens, my backend is OK at PostMan works OK, with a curl command it's OK too, I send the header with a refresh token and the backend responses with an ...
1
vote
0
answers
75
views
Why do I get invalid_refresh_token error when trying to refresh the token for Slack?
I am developing something like Zapier/N8N, in which user can come and create Slack integration and then installs the app in his workspace. Tokens are generated and I stored them in the DB.
Earlier I ...
0
votes
0
answers
33
views
Unable to get access token from myanimelist.net
node.js code
router.post('/accessToken', async (req, res) => {debugger const { client_id,client_secret , grant_type, code, redirect_uri, code_verifier } = req.body;
const basicAuth = Buffer.from(...
0
votes
0
answers
30
views
ADFS RefreshToken (SSOLifetime) Not Working
I have gone Through all documentations available from microsoft and every question here in stack overflow.
There is no information as to why would the SSOLifetime setting in AD FS not work or not ...
0
votes
0
answers
47
views
The refresh token call is not being triggered when the network disconnects and then reconnects using angular-oauth2-oidc
I am using angular-oauth2-oidc v15.0.1 in my Angular project to authenticate my application with the Identity Server. We have implemented a refresh token that is triggered just before the token ...
0
votes
0
answers
133
views
Dynamic refresh and access token updating. ASP.NET Core 8
I want to update my access and refresh tokens in my backend using middleware. When I send a request to my API, I take the token from the context and add it to the authorization header.
services....