Mobile inspectors remain in the field for hours; access tokens expire and uploads begin failing silently. What should the client implement?
Select an answer to reveal the explanation.
Short Explanation
Field tablets need a refresh handshake when the access token times out—like renewing a parking permit mid-shift. Do not bake IAM keys into the app or pretend expiry never happens. Silent retries with a dead token just fill the logs with ghosts.
Full Explanation
OAuth/OIDC access tokens are short-lived by design. Mobile clients should detect expiry or 401s and use the refresh-token flow (or interactive re-authentication) securely. Disabling expiry globally, embedding IAM keys in mobile binaries, or retrying expired access tokens indefinitely are insecure or ineffective approaches.