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.
What it checks
countGraphemes(text) <= 63_206.
Why 63,206
Facebook’s hard server-side cap on a Page post is 63,206 characters — an oddly specific value chosen by Meta. Above it, Graph API rejects withcode 100. We pre-check against graphemes; since Facebook counts UTF-16 codeunits but graphemes ≤ codeunits, we never over-permit a payload that would 100 upstream.