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

# Threads

> Connect your Threads account to TryPost

# Threads

TryPost supports posting to Threads.

## Connect your account

1. Go to **Accounts** in the TryPost dashboard
2. Click **Connect Threads**
3. Authorize TryPost on Threads

## Supported content types

| Type     | Description                                       |
| -------- | ------------------------------------------------- |
| **Post** | Text with up to 10 optional images **or** 1 video |

## OAuth scopes

`threads_basic`, `threads_content_publish`, `threads_manage_insights`

`threads_manage_insights` powers per-post and account-level metrics in **Analytics**.

## Self-hosting setup

<Accordion title="Configure Threads API credentials">
  1. Go to [Meta for Developers](https://developers.facebook.com/) and create an app
  2. Add the **Threads** product
  3. Request the scopes above in the app's permissions section
  4. Set the redirect URL to `{APP_URL}/accounts/threads/callback`
  5. Add to your `.env`:

  ```env theme={null}
  THREADS_CLIENT_ID=your_app_id
  THREADS_CLIENT_SECRET=your_app_secret
  THREADS_CLIENT_REDIRECT="${APP_URL}/accounts/threads/callback"
  ```
</Accordion>
