원클릭으로
minipostiz-telegram-setup
Telegram Bot API setup for minipostiz-cli — create bot via BotFather, get token + chat ID, store credentials
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Telegram Bot API setup for minipostiz-cli — create bot via BotFather, get token + chat ID, store credentials
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Facebook Graph API setup for minipostiz-cli — create app, get page access token + page ID, store credentials
Bluesky AT Protocol setup for minipostiz-cli — create app password, store handle + password
Dev.to API setup for minipostiz-cli — generate API key, store credentials, posting format
Discord webhook setup for minipostiz-cli — create webhook in a channel, store URL
Mastodon API setup for minipostiz-cli — create application, get access token, store instance URL + token
Reddit OAuth setup for minipostiz-cli — create script app, get client credentials, store with username/password/subreddit
| name | minipostiz-telegram-setup |
| description | Telegram Bot API setup for minipostiz-cli — create bot via BotFather, get token + chat ID, store credentials |
| type | setup |
Telegram posting uses a Bot. You need a bot token and the ID of the chat/channel to post to.
| Credential | Flag |
|---|---|
| Bot Token | --botToken |
| Chat ID | --chatId |
/newbotbot)123456789:ABCdefGHIjklMNOpqrSTUvwxYZStore the token securely — it gives full control over your bot.
The chat ID depends on where you want to post:
https://api.telegram.org/botTOKEN/getUpdates
(replace TOKEN with your bot token)"chat": {"id": -XXXXXXXXXX} — that negative number is your chat ID-100https://api.telegram.org/botTOKEN/getUpdates"from": {"id": XXXXXXXXX} — that positive number is your personal chat IDminipostiz auth --platform telegram \
--botToken "123456789:ABCdefGHIjklMNOpqrSTUvwxYZ" \
--chatId "-1001234567890"
# Or via supercli
sc minipostiz auth set-telegram \
--botToken "123456789:ABCdefGHIjklMNOpqrSTUvwxYZ" \
--chatId "-1001234567890"
minipostiz auth verify --platform telegram
minipostiz publish --platform telegram --message "Hello from minipostiz-cli"
| Error | Cause | Fix |
|---|---|---|
chat not found | Bot not in chat, or wrong chatId | Add bot to group/channel; re-check chatId from getUpdates |
Forbidden: bot can't send messages to the bot | chatId is the bot's own ID | Use a group/channel ID, not the bot's ID |
Forbidden: bot is not a member | Bot not added to channel | Add bot as admin in channel settings |
Unauthorized | Invalid bot token | Regenerate via BotFather: /token → select your bot |
Bot tokens do not expire unless revoked via BotFather (/revoke).