원클릭으로
minipostiz-x-setup
X/Twitter OAuth 1.0a setup for minipostiz-cli — create developer app, get all 4 keys, store credentials
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
X/Twitter OAuth 1.0a setup for minipostiz-cli — create developer app, get all 4 keys, 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-x-setup |
| description | X/Twitter OAuth 1.0a setup for minipostiz-cli — create developer app, get all 4 keys, store credentials |
| type | setup |
X uses OAuth 1.0a for posting. You need 4 keys: API Key, API Secret, Access Token, Access Token Secret.
| Credential | Flag |
|---|---|
| API Key (Consumer Key) | --apiKey |
| API Secret (Consumer Secret) | --apiSecret |
| Access Token | --accessToken |
| Access Token Secret | --accessSecret |
http://localhost (required, not actually used)Read and Write permission is required — Read-only tokens cannot post.
In your app → Keys and Tokens tab:
If you already generated them and lost the secret, regenerate — old tokens are invalidated.
minipostiz auth --platform x \
--apiKey "YOUR_API_KEY" \
--apiSecret "YOUR_API_SECRET" \
--accessToken "YOUR_ACCESS_TOKEN" \
--accessSecret "YOUR_ACCESS_SECRET"
# Or via supercli
sc minipostiz auth set-x \
--apiKey "YOUR_API_KEY" \
--apiSecret "YOUR_API_SECRET" \
--accessToken "YOUR_ACCESS_TOKEN" \
--accessSecret "YOUR_ACCESS_SECRET"
minipostiz publish --platform x --message "Hello from minipostiz-cli"
minipostiz history --platform x --limit 5
| Error | Cause | Fix |
|---|---|---|
401 Unauthorized | Wrong keys or Read-only permission | Check all 4 keys; ensure app has Read+Write |
403 Forbidden | App not approved for write access | Set app permissions to Read and Write, regenerate tokens |
187 Status is a duplicate | Identical tweet already posted | Change the message text |
453 App not allowed | Free tier restriction | Basic tier ($100/mo) required for v2 posting |
OAuth 1.0a tokens do not expire unless you regenerate them or revoke app access.