Access Token is the last token acquired during the OAuth authentication process.
Questions tagged [access-token]
4002 questions
1
vote
1 answer
Where should I save the calender api token?
I'm developing a web application that gets calendar information for multiple users.
It is a communication application used in the company.
I want to be able to see today's schedule for other users.
Vue is used for the front end, and node.js is used…

figalo66
- 155
- 6
1
vote
0 answers
React : How to pass Authorization Access Token from Laravel passport to React component?
I need to convert a Laravel Edit Profile form page to React (Partially), I am using react-hook-form for the Edit Profile page form, the form has an onsubmit ajax call ( POST api/v1/user/profile/edit ) that needs to be authorized with the…

yelnn
- 73
- 7
1
vote
0 answers
OAUTH error="access_denied", error_description="Error requesting access token." when trying to access tokens
the code that i wrote:
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import…

ycl
- 11
- 2
1
vote
0 answers
facebook and twitter access-keys like AWS has
I am writing a desktop app, so webbased oauth circuit is not applicable to my needs.
now if you are an AWS customer you have your secret user/pass to own the account.
but you also can generate access-key secret-key to "share" with some pals,…

diego
- 11
- 2
1
vote
1 answer
Where to store multiple access tokens on AWS?
I'm working on a Slack app which will have to store access token per each customer using the app (ex. 1000 teams using it = 1000 tokens). Token enables the app to access Slack API for customers workspace and will be used frequently every day.
App…

wmatt
- 695
- 2
- 7
- 19
1
vote
0 answers
How can I use Laravel Sanctum in a distributed system?
I need to use Laravel Sanctum in a distributed system, for this case, I have 3 participants:
The user
The API server
The authentication server
The authentication server is only for generate and validate tokens, the API must make the authentication…

Carlos Tinnelly
- 503
- 1
- 3
- 20
1
vote
1 answer
How to get the access token from Linkedin API with express and axios?
I am studying Linkedin API to use the 'sign-in with Linkedin' feature.
I am using axios to get the accessToken but I am getting this error:
error: 'invalid_redirect_uri',
data: {
error: 'invalid_redirect_uri',
error_description: 'Unable to…

Andrea D_
- 2,028
- 3
- 15
- 38
1
vote
0 answers
Using MSAL web app authentication together with Redis as token cache, can TTL be configured for the Redis keys?
In a ASP.NET Core 3.1 project, when settings up authentication using MSAL:
services
.AddMicrosoftIdentityWebAppAuthentication(configuration, "AzureAdB2C")
.EnableTokenAcquisitionToCallDownstreamApi(scopes)
…

Ovenkoek
- 621
- 1
- 6
- 7
1
vote
3 answers
How to send updated Firebase Token with every Retrofit API call
I want to send updated token (FirebaseAuth.getInstance().getAccessToken()) every time I need to send my REST request in Header via Retrofit. I have setup the RetrofitClient as following-
RetrofitClient.java
public class RetrofitClient {
private…

Nikhil Sharma
- 897
- 1
- 4
- 18
1
vote
1 answer
Firebase IdToken generated using FirebaseAuth.currentUser.getIdToken() on flutter gives error "failed to verify token signature" on Go backend
I am working on a flutter app where after sign-in, I have to validate a user's idToken on a custom backend (written in Go) using the Firebase admin SDK: firebase.google.com/go.
I am using the following snippet to sign-in the user via GoogleSignIn…

ancientfuture
- 31
- 1
- 8
1
vote
0 answers
How validation happens for multiple users using OAuth 1.0 token in WebAPI C#?
I have written logic in startup.cs to expire the token in every 10 minutes. but I worry when multiple users invoke the API different token will be generated for different users, then how the state & token validity is maintained for different…

ali
- 31
- 5
1
vote
1 answer
Want to understand OAuth Code flow where Application passes the Access_Token on user's behalf to the API to get the resources
I like to know my understanding is correct and also like to clarify my doubts further.
1) Confirm my Understanding:
In the below image, I have explained my understanding of protecting the application and api using Azure AD. I have exposed the API…

Brijesh Shah
- 573
- 6
- 18
1
vote
1 answer
API Access Token expiration is very short
I'm pretty new to APIs, and I'm starting my first API project. I'm using the Petfinder API v2 to create a website that searches for adoptable animals. But their API uses OAuth, and they give you a key and secret. Then you use those to get a token…

tneilson08
- 137
- 2
- 9
1
vote
1 answer
Refresh token rotation and password loss
In my web application I am using access and refresh tokens to authorize user access to protected resources, the flow is as following:
The user, through a mobile app, sends a request to the "auth/token" endpoint providing his credentials. The server…

Snake
- 113
- 1
- 9
1
vote
2 answers
Where to store access token securely in UWP application?
Local storage is not right place to store tokens. But this blog post says LocalCache is generally the right location. If I store in LocalCache using DPAPI, Does this enough secure?
Does PasswordVault is good place to store it?
How can I store token…

Mejbah
- 53
- 6