Bluesky: posztolási szabályok és beállítások
Mit fogad el a Bluesky csatorna a Postyban: média, korlátok, kötelező mezők, és a settings objektum mezői az API-hoz.
Basics
blueskyPost types
The same channel accepts more than one kind of post, and each kind has different requirements. The table shows what you need for each.
| Type | Media | Notes |
|---|---|---|
| Text | none | No extra notes. |
| Image | up to 4 images | No extra notes. |
| Video | 1 video | No extra notes. |
| Thread | each part has its own | No extra notes. |
Rules
- Bluesky has no platform-specific settings. The __type field is enough in the settings object.
- You connect with an app password, not your account password. You create the app password in Bluesky's settings.
Settings fields
The settings object only needs the __type field. The editor does not show a separate settings section for this channel.
Examples
Each example is one item in the POST /public/v1/posts request's posts array. The envelope around it is always this:
{
"type": "schedule",
"date": "2026-09-15T09:00:00.000Z",
"shortLink": false,
"posts": [ /* az alábbi elem */ ]
}Text post
The settings object only needs the __type field.
{
"integration": { "id": "<bluesky-csatorna>" },
"value": [{ "content": "<p>Sziasztok!</p>", "image": [] }],
"settings": { "__type": "bluesky" }
}The channel ID comes from the channel list, and the path values for images and videos from media upload. The exact schema for the connected account comes from the settings schema endpoint. From the command line, the same thing is the --settings flag. See the CLI examples.