fix: auto-retry on 403 bearer-invalid after idle#111
Open
leecoder wants to merge 1 commit into
Open
Conversation
When the server invalidates the bearer token after an idle period, the first request fails with 403 'The bearer token included in the request is invalid'. Previously this was immediately classified as a permanent auth failure. Now on the first 403 bearer-invalid, the plugin: 1. Forces a token refresh (CLI sync or OIDC refresh) 2. Retries the same request transparently If the retry also fails, existing permanent-failure handling applies. Fixes tickernelz#82
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
After a period of inactivity, the first API request fails with:
The token in the plugin DB matches the kiro-cli token, is not expired, and
kiro-cli whoamisucceeds. This is a server-side bearer invalidation that resolves on the next attempt. Users currently have to manually retry or do a full logout/login cycle.Related: #82
Solution
On the first encounter of a 403 with "bearer token included in the request is invalid", the plugin now:
If the retry also fails with bearer-invalid, the existing permanent-failure classification applies unchanged.
Changes
src/core/request/request-handler.ts: Added inline bearer-invalid detection before the error-handler, with a one-shotforceRefresh+continuesrc/core/auth/token-refresher.ts: AddedforceRefresh()method that attempts CLI sync first, then falls back to OIDC refreshsrc/core/request/error-handler.ts: AddedbearerRetriedcontext flag andforceRefreshreturn field for defense-in-depth (error-handler path)Testing