MOHSEN ALIAKBARI
12/14/2024, 12:26 PMArjan van Wieringen
12/15/2024, 9:23 AMAleksei Tirman [JB]
12/16/2024, 9:13 AMMOHSEN ALIAKBARI
12/16/2024, 9:29 AMAuth
plugin, has the refresh token logic encapsulated like this:
install(Auth) {
bearer {
refreshTokens {
// refresh logic
}
}
}
When the refresh token expires, the client is unable to refresh its token and encounters a 401 error (indicating the token has expired). The issue is that we cannot recognize that the client is unable to refresh its tokens in this case.Aleksei Tirman [JB]
12/16/2024, 9:58 AMHttpRequestBuilder
to prevent indefinite refresh requests and to be able to handle the 401 status from the server.MOHSEN ALIAKBARI
12/28/2024, 12:42 AM