Questions tagged [access-token]

Access Token is the last token acquired during the OAuth authentication process.

4002 questions
1
vote
1 answer

Get Facebook OAuth token from code parameter

I build a FB app which does the following: 1) redirect initial request to FB, in order to authenticate/login, as…
Mirko
  • 13
  • 1
  • 3
1
vote
1 answer

auth0 let customers connect to my app using access token

Thank you for reading this question. we wish to grand our users to fetch data from our servers using batch process. they are using node.js. this is what I have tried to do that with no success. can you help me, please? var AuthenticationClient =…
Shay_t
  • 163
  • 1
  • 16
1
vote
2 answers

How to read ID Token using MSAL

I successfully acquire an ID Token along with an Access Token from Azure AD using MSAL.js in my Angular application. The ID Token does contain information about the signed-in user. This would include roles and groups. However I do not understand how…
Sam
  • 13,934
  • 26
  • 108
  • 194
1
vote
1 answer

Is it safe to store developer tokens on the client for the Apple Music API?

I'm writing an application that interfaces with Apple Music API, and up until this point, all of my API calls were non-personalized, such as searching for a catalog song or artist. The typical flow would be the client app searches for something by…
rahultimate
  • 43
  • 1
  • 5
1
vote
0 answers

github api to refresh_token throws bad_refresh_token error when access_token is expired

I am trying to build a github app. I use the access token api(https://github.com/login/oauth/access_token) to get the access token for the user. I then use the same api with refresh_token to get a new access_token. The problem I see is this - As…
BKSingh
  • 527
  • 2
  • 11
  • 20
1
vote
0 answers

Access Token Revocation not working in wso2 Api manager

Description: I'm generating a OAUTH2 password grant access token using the client ID and Client secret of my Service provider in wso2 API manager. The service provider is auto generated for the application from which I have subscribed my API in wso2…
prajwal14
  • 21
  • 1
1
vote
1 answer

Puppeteer pass on access token to wget (from Dropbox link login)

Sometimes is hard to do just simple stuff with puppeteer. I was wondering if it is possible to use puppeteer to login to a dropbox link with password and then use someting like wget or curl to do the rest. I imagine that I would need to read and…
Norfeldt
  • 8,272
  • 23
  • 96
  • 152
1
vote
1 answer

Access token is null in Msal response-Azure AD B2C

I have an SPA Vue.js app, using msal.js to connect Azure AD B2C to get the Id,access token and use the access token for furthur call to my APIs(which is a .net core webApi). So far I was using built in user flow and now I have to change to custom…
1
vote
1 answer

Question about access token and refresh token in google API

Currently, I am using OAuth 2.0 to access Google APIs. I got access token and refresh token, used the access token to connect to Google. Because the access token only lasts for 1 hour, I have to use refresh token to get new access token. However,…
emiya
  • 83
  • 10
1
vote
2 answers

azure devops - managing personal access tokens

Can personal access tokens in Azure DevOps be "shared" tokens that can be managed by a group of users, such as a security admin group? By managed I mean: create, revoke, edit, regenerate. I want to avoid a situation where we have "build" or…
Korey
  • 929
  • 1
  • 7
  • 14
1
vote
0 answers

Invalid Token InstaMojo while fetching order Android

private void fetchOrder(String orderID) { com.instamojo.android.network.Request request = new com.instamojo.android.network.Request(orderID, new OrderRequestCallback() { @Override public void onFinish(final Order…
shubh gaikwad
  • 127
  • 2
  • 10
1
vote
1 answer

Difference in types of token

I am hearing continously token name of different type. Can anybody explain me different type of token with some example. Access token Refresh token Oauth Token Bearer token JWT token. Please forgive me if my question is incorrect. I am highly…
user8867454
1
vote
0 answers

Access and refresh token (JWT) php

I'm trying to use JWT tokens in my php project with php-jwt library. At now I can log in with smartphone app. After success registration app gets jwt access_token by JWT::encode($token, $key);. Client can send this token to the server, which checks…
DenVebber
  • 153
  • 3
  • 11
1
vote
0 answers

Refreshing of tokens at specific intervals for APIs consumption

Hi I wanted to know what's the right approach to refresh access tokens inside java code. So currently the APIs am consuming expect an access token in the request body for authorization. So I retrieve the access token first by making an API call to…
Trooper78
  • 31
  • 5
1
vote
1 answer

Cloud Endpoints Auth returning JWT Issuer is not configured when using Access Token from CICP/Firebase Auth

Right now my OpenAPI yaml looks like this: And my Access Token coming out of my JWT in raw format looks like this: The Google-Issuer and the JWT iss are the exact same, the JWT kid matches the key ids inside the link provided by the…
1 2 3
99
100