> ## Documentation Index
> Fetch the complete documentation index at: https://nango.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Token refreshing & validity

> How Nango handles OAuth token refresh and what to do when tokens are revoked.

## Automatic token refresh

Nango automatically refreshes OAuth access tokens before they expire. You don't need to implement any refresh logic in your application.

To prevent token revocation due to inactivity (some APIs revoke unused refresh tokens), Nango refreshes each access token at least once every 24 hours.

## Handling refresh failures

Token refresh can fail for various reasons:

* The user revoked access in the external application
* The external API revoked the refresh token
* The external API experienced an outage

When a refresh fails, Nango can [notify your app via webhook](/docs/guides/platform/webhooks-from-nango) so you can prompt the user to reconnect.

Nango automatically retries failed refreshes on its periodic cycle, so a single failure doesn't necessarily mean the connection is broken — transient provider outages often resolve on the next retry. When a connection recovers, Nango sends a follow-up webhook with `"success": true` so you know it's healthy again without having to poll the connection. Nango only gives up on a connection (and stops retrying) after several consecutive days of failed refreshes.

## Best practices

Revoked access tokens and refresh failures happen to all integrations. To handle them gracefully:

1. **Monitor for failures and recoveries**: Set up [webhooks from Nango](/docs/guides/platform/webhooks-from-nango) to receive notifications when token refresh fails, and again if/when it later recovers
2. **Handle revoked tokens**: Follow our [guide on handling revoked access tokens](/docs/guides/platform/common-issues#token-refresh-error-from-the-external-api)
3. **Implement re-authorization**: Make sure you have the [re-authorization flow](/docs/guides/auth/auth-guide#re-authorize-an-existing-connection) in place so users can easily reconnect broken connections

## Related guides

* [Auth guide](/docs/guides/auth/auth-guide#re-authorize-an-existing-connection) - implement reconnect sessions for invalid credentials.
* [Webhooks from Nango](/docs/guides/platform/webhooks-from-nango) - receive refresh failure and recovery notifications.
* [Common issues](/docs/guides/platform/common-issues#token-refresh-error-from-the-external-api) - troubleshoot revoked tokens.

<Tip>
  **Questions, problems, feedback?** Please reach out in the [Slack community](https://nango.dev/slack).
</Tip>
