Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.letmepost.dev/llms.txt

Use this file to discover all available pages before exploring further.

Fires when we detect that a connected account’s token is no longer accepted by the upstream platform. Either:
  • The user revoked the app’s access from the platform’s settings page.
  • A refresh attempt failed because the refresh token is expired or invalid.
  • A Bluesky app password was deleted from bsky.app/settings/app-passwords.

Payload

{
  "type": "token.revoked",
  "data": {
    "accountId": "...",
    "profileId": "...",
    "platform": "facebook",
    "platformAccountId": "...",
    "displayName": "...",
    "revokedAt": "2026-05-04T15:30:00Z",
    "reason": "refresh_failed"
  }
}

Use it for

  • Mark the connected account as needing re-auth in your UI.
  • Stop scheduling new posts against the account until reconnected.