بنقرة واحدة
minipostiz-devto-setup
Dev.to API setup for minipostiz-cli — generate API key, store credentials, posting format
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Dev.to API setup for minipostiz-cli — generate API key, store credentials, posting format
التثبيت باستخدام 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
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
Telegram Bot API setup for minipostiz-cli — create bot via BotFather, get token + chat ID, store credentials
| name | minipostiz-devto-setup |
| description | Dev.to API setup for minipostiz-cli — generate API key, store credentials, posting format |
| type | setup |
Dev.to has a simple REST API. One API key is all you need.
| Credential | Flag |
|---|---|
| API Key | --apiKey |
| Tags (optional) | --tags (comma-separated, max 4) |
| Series (optional) | --series |
minipostiz) → Generate API Keyminipostiz auth --platform devto --apiKey "YOUR_API_KEY"
# With optional defaults
minipostiz auth --platform devto \
--apiKey "YOUR_API_KEY" \
--tags "webdev,productivity,tools" \
--series "My Series Name"
# Or via supercli
sc minipostiz auth set-devto --apiKey "YOUR_API_KEY"
minipostiz auth verify --platform devto
minipostiz publish --platform devto --message "# My First Post
This is the body of the article published via minipostiz-cli."
Dev.to posts are articles. minipostiz-cli maps:
--message → article title (markdown heading stripped)minipostiz publish --platform devto --message "# Article Title
## Introduction
Body content here. Supports **bold**, *italic*, \`code\`, etc."
Tags and series can be set at auth time (applied to all posts) or overridden:
# Update auth to set default tags
minipostiz auth --platform devto --apiKey "KEY" --tags "javascript,node,cli"
| Error | Cause | Fix |
|---|---|---|
401 Unauthorized | Invalid API key | Regenerate key at dev.to → Settings → Extensions |
422 Unprocessable | Article validation failed | Ensure title (first line) is non-empty |
| Post published but no tags | Tags not in auth | Add --tags to minipostiz auth --platform devto |
Dev.to API keys do not expire unless deleted from Settings → Extensions.