Refresh tokens automatically
See original GitHub issueIs 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:
- Created a year ago
- Comments:5
Top 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 >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
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:
But it isn’t perfect 🤷
Thanks @alkihis
Excellent maintainer!