Access Token is the last token acquired during the OAuth authentication process.
Questions tagged [access-token]
4002 questions
1
vote
0 answers
TokenAuth to monitor (or scrape) data from an API (Carbonite Backup)
I am currently exploring the best way to visualizing data from Carbonite Server Backup. They offer an simple Api that returns Json data. I want to visualize this data in Grafana. However the Api uses an annoying way of authentication.
I have to make…

MaartenMol96
- 33
- 5
1
vote
1 answer
Empty MSAL token cache
I have the following simple .NET script:
static void Main(string[] args)
{
var result1 = Login().Result;
var result2 = Login().Result;
}
public static async Task Login()
{
var options = new…

Tibor Takács
- 3,535
- 1
- 20
- 23
1
vote
1 answer
Get Access Token from EndPoint LocalStorage AWS Cognito
i work in electron js with aws cognito and oauth2. I need to get an accessToken dynamically from a Storage which is in a cloud endPoint in order to have the authorizations to get a list of data. As far as now, i can get the list if i specify the…

Montasser
- 77
- 5
1
vote
0 answers
Google Refresh_token not generating Access Token once it expires. Refresh_token cannot create a new Access_token
I am trying to access google sheets using Java client Library. First time access token and refresh token are generated and stored in File.(StoredCredential). Once the access token expires new token is not generated with Refresh token. Please suggest…

Priyanka Raviprolu
- 11
- 1
1
vote
0 answers
Where shouid I put the access token using oauth2.0?
I am currently working on Oauth2.0 and Spring Security, and I have a question and post it like this.
Normally, if you use Oauth2.0, you can get access token through Callback url, right? But if the requested client server and the auth server are…

Kim Dong Geun
- 11
- 1
1
vote
2 answers
HttpClient System.Net.Http.HttpRequestException: Response status code does not indicate success: 401 (Unauthorized)
I'm trying to send a request to Auth0 from my asp.net core application.
I am using HttpClient for that.
Issue is when I create same request in postman everything works fine but if I use it from my .NET Core app than it…

Roxy'Pro
- 4,216
- 9
- 40
- 102
1
vote
1 answer
unauthorize_client/invalid_client on refreshing access token
As the title says i'm unable to refresh access token as it is giving me a unauthorized_client error. This used to work perfectly a month ago but it doesn't work now.
Here's how i get the token:
My android app logins with the required scopes using…

Adnan karim
- 1,009
- 10
- 15
1
vote
0 answers
MsalAuthProvider is returning ID Token and Access Token that is the same
I am familiarizing myself with react-aad-msal library. I'm trying to use it for authentication and securing our APIs in Azure. I have a SPA, a "gateway" api, and three specific apis. The plan is to use implicit flow between the SPA and the gateway…

Obie_One
- 81
- 10
1
vote
1 answer
Vertx OAUTH2.0 Access Token Error: NoSuchKeyIdException
I am using vertx to generate OAuth2 token with client credentials, Here is code snippet
vertx-auth-oauth2
3.9.1
OAuth2ClientOptions credentials = new…

Tech Support
- 11
- 1
1
vote
1 answer
NullPointerException in Keycloak when trying to get a token
I am trying to get a token from Keycloak 10.0.2 with the following request:
POST http://localhost:8051/auth/realms/myRealm/protocol/openid-connect/token
x-www-form-urlencoded:
grant_type: urn:ietf:params:oauth:grant-type:token-exchange
client_id:…

Martin
- 111
- 2
- 13
1
vote
1 answer
How do I get the facebook user access_token for my feed
I am using jQuery to work with a json-data from my Facebook wall. The call for my json-file is like that:
var url = 'http://graph.facebook.com/myname/feed';
$.getJSON(url+'&callback=?',function(json){...});
Since June 4th. I got the Facebook…

Tobi
- 11
- 2
1
vote
0 answers
how to perform multiple POST request to the same API using diffrent Access token using JAVA
So I've been trying for a while to make many calls to an API with POST request, where I need to parse the access token of my devices in the URL, which I've stored them in an array,
String [] arr = new String[49];
arr[0] = "Access_Token1";
…

Paupiette
- 47
- 8
1
vote
2 answers
SharePoint Online REST by using access_token still getting 403
following this article http://www.ktskumar.com/2017/01/access-sharepoint-online-using-postman/
I was able to register an app and get a client_id as well as a security token.
Now if I follow the article, I'm able to get an access token by using…

Patrick
- 21
- 1
- 3
1
vote
1 answer
access_denied error for client user even though keycloak evaluation says permit
I have multiple resources, each resource pointing to a page on the application. I am using keycloak (v10.0.2) for authentication of requests. I have two users, Admin, and Client. Admin has access to all the resources while Client has access to only…

vinayawsm
- 845
- 9
- 28
1
vote
0 answers
SoapUI 5.5.0 (free version ) OAuth2 Access Token retrieval failure with error
I have read many articles addressing my current issue but none of the article's/thread's solutions resolved my problem.
I'm using SoapUI 5.5.0 (free version) and attempting to retrieve an OAuth2 Access Token from a vendor's API using the Get Token…

rsasparilla
- 11
- 2