question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Refresh tokens automatically

See original GitHub issue

Is your feature request related to a problem? Please describe. I have a user access token and a refresh token to access the Twitter V2 API. At the moment I need to manually refresh those tokens in time when they expire, otherwise I get a 401 Unauthorized response.

Describe the solution you’d like Either expose an API that exposes functionality to automatically refresh the tokens when necessary or provide an interface so developers can write a plugin to do this.

Describe alternatives you’ve considered I could wrap every method call in a helper method to catch errors, refresh tokens and retry but that’s kinda ugly and feels like a hack.

Additional context /

Issue Analytics

  • State:closed
  • Created a year ago
  • Comments:5

github_iconTop GitHub Comments

2reactions
alkihiscommented, Apr 5, 2022

I implemented a test plugin within this branch: https://github.com/PLhery/node-twitter-api-v2/blob/test/refresh-token-plugin-api/src/plugins/token.auto.refresh.plugin.ts

This come with some limitations, most of them comes to error stack trace that can be re-written.

This handles:

  • Concurrency requests, only one request for refreshing token can be made at a time
  • Recursive requests, if token is refreshed but the retry fail with 401 too, it will directly throw
  • Storage of credentials+refreshToken within plugin
  • Callback for token refreshing

But it isn’t perfect 🤷

1reaction
sartoshi-foot-daocommented, Apr 8, 2022

Thanks @alkihis

Excellent maintainer!

Read more comments on GitHub >

github_iconTop Results From Across the Web

What Are Refresh Tokens and How to Use Them Securely
Refresh Token Automatic Reuse Detection ... Refresh tokens are bearer tokens. It's impossible for the authorization server to know who is ...
Read more >
What Are Refresh Tokens and How Can They Boost Your ...
When a current access token expires, a valid refresh token is used to automatically request a new access token from the authorization server....
Read more >
Microsoft identity platform refresh tokens
The refresh token is used to obtain new access/refresh token pairs when the current access token expires. Refresh tokens are also used to ......
Read more >
Refresh Access Token | ReadyAPI Documentation
Refresh token exist, ReadyAPI automatically updates the access token using the refresh token. You need to click Refresh to update the access token...
Read more >
Automatically Refreshing Auth Tokens in .NET - Michael McNeil
A refresh token is a credential that allows the application to obtain a new access token without forcing the user to log in...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found