affaan-m/ECC

x-api

ツイートの投稿、スレッド、タイムラインの読み取り、検索、分析のためのX/Twitter API統合。OAuth認証パターン、レートリミット、プラットフォームネイティブなコンテンツ投稿をカバーする。ユーザーがプログラムでXと対話したい場合に使用する。

75CollectingNetwork access
See how to use itView GitHub source
npx skills add https://github.com/affaan-m/ECC --skill "docs/ja-JP/skills/x-api"
Automated source guide

Source checked Jul 28, 2026·Refresh due Oct 26, 2026

Reorganized from the pinned upstream SKILL.md

Turn x-api's source instructions into a guide you can follow

According to the pinned SKILL.md from affaan-m/ECC: 投稿、読み取り、検索、分析のためにX(Twitter)とプログラムで対話する。

npx skills add https://github.com/affaan-m/ECC --skill "docs/ja-JP/skills/x-api"
Check the pinned source

Best fit

  • ツイートの投稿、スレッド、タイムラインの読み取り、検索、分析のためのX/Twitter API統合。OAuth認証パターン、レートリミット、プラットフォームネイティブなコンテンツ投稿をカバーする。ユーザーがプログラムでXと対話したい場合に使用する。

Bring this context

  • export XBEARERTOKEN="your-bearer-token" python import os import requests
  • bearer = os.environ["XBEARERTOKEN"] headers = {"Authorization": f"Bearer {bearer}"}
  • export XAPIKEY="your-api-key" export XAPISECRET="your-api-secret" export XACCESSTOKEN="your-access-token" export XACCESSSECRET="your-access-secret" python import os from requestsoauthlib import OAuth1Session

Expected outputs

  • A result that follows the pinned x-api instructions.
  • A concise record of assumptions, inputs used, and unresolved questions.
  • A final check against the source workflow and relevant permission signals.

Key source sections

Read x-api through these 5 source sections

Sections are extracted automatically from the pinned SKILL.md and link back to the source.

01

Environment setup

export XBEARERTOKEN="your-bearer-token" python import os import requests

SKILL.md · Environment setup
export XBEARERTOKEN="your-bearer-token" python import os import requestsbearer = os.environ["XBEARERTOKEN"] headers = {"Authorization": f"Bearer {bearer}"}
02

Environment setup — source before use

export XAPIKEY="your-api-key" export XAPISECRET="your-api-secret" export XACCESSTOKEN="your-access-token" export XACCESSSECRET="your-access-secret" python import os from requestsoauthlib import OAuth1Session

SKILL.md · Environment setup — source before use
export XAPIKEY="your-api-key" export XAPISECRET="your-api-secret" export XACCESSTOKEN="your-access-token" export XACCESSSECRET="your-access-secret" python import os from requestsoauthlib import OAuth1Sessionoauth = OAuth1Session( os.environ["XAPIKEY"], clientsecret=os.environ["XAPISECRET"], resourceownerkey=os.environ["XACCESSTOKEN"], resourceownersecret=os.environ["XACCESSSECRET"], ) python resp = oauth.post( "https://api…
03

Step 1: Upload media

mediaresp = oauth.post( "https://upload.twitter.com/1.1/media/upload.json", files={"media": open("image.png", "rb")} ) mediaid = mediaresp.json()["mediaidstring"]

SKILL.md · Step 1: Upload media
mediaresp = oauth.post( "https://upload.twitter.com/1.1/media/upload.json", files={"media": open("image.png", "rb")} ) mediaid = mediaresp.json()["mediaidstring"]
04

Step 2: Post with media

resp = oauth.post( "https://api.x.com/2/tweets", json={"text": "Check this out", "media": {"mediaids": [mediaid]}} ) python import time

SKILL.md · Step 2: Post with media
トークンをハードコードしない。 環境変数または .env ファイルを使用する。.env ファイルをコミットしない。 .gitignore に追加する。トークンが漏洩した場合はローテーションする。 developer.x.comで再生成する。
05

有効化する場面

ユーザーがプログラムでツイートやスレッドを投稿したい Xのタイムライン、メンション、またはユーザーデータを読み取る X上でコンテンツ、トレンド、または会話を検索する X統合またはボットを構築する 分析とエンゲージメント追跡 ユーザーが「Xに投稿する」「ツイートする」「X API」または「Twitter API」と言及している

SKILL.md · 有効化する場面
ユーザーがプログラムでツイートやスレッドを投稿したいXのタイムライン、メンション、またはユーザーデータを読み取るX上でコンテンツ、トレンド、または会話を検索する

SkillSignal prompt templates

Provide the task, context, and acceptance criteria

These prompts were written by SkillSignal from the source structure; they are not upstream text.

Task-start prompt

Confirm source fit, inputs, and outputs before acting.

Use x-api to help me with: [specific task]. Context: [files, data, or background]. Constraints: [environment, scope, and prohibited actions]. Before acting, check the pinned SKILL.md and explain which sections apply, what inputs are still missing, and what you will deliver.

Source-guided execution

Make the Agent explicitly follow the key extracted sections.

Apply the pinned x-api source to [task]. Pay particular attention to these source sections: “Environment setup”, “Environment setup — source before use”, “Step 1: Upload media”, “Step 2: Post with media”, “有効化する場面”. Preserve the important decision at each step. Mark facts not covered by the source as “needs confirmation” instead of inventing them. Then verify the result against my acceptance criteria: [criteria].

Result-review prompt

Check omissions, permissions, and source drift before delivery.

Review the current x-api result: (1) does it satisfy the original task; (2) were any applicable steps or limits in the pinned SKILL.md missed; (3) did it perform any unauthorized file, command, network, or data action; and (4) which conclusions remain unverified? List issues first, then fix only what the source or user authorization supports.

Output checklist

Verify each item before delivery

The task matches the purpose documented in the SKILL.md.

The source section “Environment setup” has been checked.

The source section “Environment setup — source before use” has been checked.

The source section “Step 1: Upload media” has been checked.

The source section “Step 2: Post with media” has been checked.

Inputs, constraints, and acceptance criteria are explicit.

Unverified facts, compatibility, and outcome claims are clearly marked.

Any file, command, network, or data action has been reviewed.

Choose a different workflow

When another Skill is the better fit

FAQ

What does x-api do?

投稿、読み取り、検索、分析のためにX(Twitter)とプログラムで対話する。

How do I start using x-api?

The catalog detected this source-specific install command: npx skills add https://github.com/affaan-m/ECC --skill "docs/ja-JP/skills/x-api". Inspect the command and pinned source before running it.

Which Agent platforms does it declare?

No dedicated Agent platform is declared in the pinned source record.

Repository stars
234,327
Repository forks
35,711
Quality
75/100
Source repository last pushed

Quality breakdown

Based on traceable docs and repository signals; stars are not treated as quality.

75/100
Documentation25/30
Specificity15/25
Maintenance20/20
Trust signals15/25

Compare before choosing

Related Agent Skills and source variants

These links are selected from shared tasks, functions, stacks, platforms, and same-name variants. Compare the source owner, documentation, permissions, and maintenance signals.

View original Skill.mdThis page is parsed directly from the repository SKILL.md without editorial rewriting. Collected: Jul 28, 2026 · about 1 min

X API

投稿、読み取り、検索、分析のためにX(Twitter)とプログラムで対話する。

有効化する場面

  • ユーザーがプログラムでツイートやスレッドを投稿したい
  • Xのタイムライン、メンション、またはユーザーデータを読み取る
  • X上でコンテンツ、トレンド、または会話を検索する
  • X統合またはボットを構築する
  • 分析とエンゲージメント追跡
  • ユーザーが「Xに投稿する」「ツイートする」「X API」または「Twitter API」と言及している

認証

OAuth 2.0 Bearerトークン(アプリのみ)

最適な用途:読み取り集中の操作、検索、公開データ。

# Environment setup
export X_BEARER_TOKEN="your-bearer-token"
import os
import requests

bearer = os.environ["X_BEARER_TOKEN"]
headers = {"Authorization": f"Bearer {bearer}"}

# Search recent tweets
resp = requests.get(
    "https://api.x.com/2/tweets/search/recent",
    headers=headers,
    params={"query": "claude code", "max_results": 10}
)
tweets = resp.json()

OAuth 1.0a(ユーザーコンテキスト)

以下に必要:ツイートの投稿、アカウント管理、DM。

# Environment setup — source before use
export X_API_KEY="your-api-key"
export X_API_SECRET="your-api-secret"
export X_ACCESS_TOKEN="your-access-token"
export X_ACCESS_SECRET="your-access-secret"
import os
from requests_oauthlib import OAuth1Session

oauth = OAuth1Session(
    os.environ["X_API_KEY"],
    client_secret=os.environ["X_API_SECRET"],
    resource_owner_key=os.environ["X_ACCESS_TOKEN"],
    resource_owner_secret=os.environ["X_ACCESS_SECRET"],
)

コア操作

ツイートを1件投稿する

resp = oauth.post(
    "https://api.x.com/2/tweets",
    json={"text": "Hello from Claude Code"}
)
resp.raise_for_status()
tweet_id = resp.json()["data"]["id"]

スレッドを投稿する

def post_thread(oauth, tweets: list[str]) -> list[str]:
    ids = []
    reply_to = None
    for text in tweets:
        payload = {"text": text}
        if reply_to:
            payload["reply"] = {"in_reply_to_tweet_id": reply_to}
        resp = oauth.post("https://api.x.com/2/tweets", json=payload)
        tweet_id = resp.json()["data"]["id"]
        ids.append(tweet_id)
        reply_to = tweet_id
    return ids

ユーザーのタイムラインを読み取る

resp = requests.get(
    f"https://api.x.com/2/users/{user_id}/tweets",
    headers=headers,
    params={
        "max_results": 10,
        "tweet.fields": "created_at,public_metrics",
    }
)

ツイートを検索する

resp = requests.get(
    "https://api.x.com/2/tweets/search/recent",
    headers=headers,
    params={
        "query": "from:affaanmustafa -is:retweet",
        "max_results": 10,
        "tweet.fields": "public_metrics,created_at",
    }
)

ユーザー名でユーザーを取得する

resp = requests.get(
    "https://api.x.com/2/users/by/username/affaanmustafa",
    headers=headers,
    params={"user.fields": "public_metrics,description,created_at"}
)

メディアをアップロードして投稿する

# Media upload uses v1.1 endpoint

# Step 1: Upload media
media_resp = oauth.post(
    "https://upload.twitter.com/1.1/media/upload.json",
    files={"media": open("image.png", "rb")}
)
media_id = media_resp.json()["media_id_string"]

# Step 2: Post with media
resp = oauth.post(
    "https://api.x.com/2/tweets",
    json={"text": "Check this out", "media": {"media_ids": [media_id]}}
)

レートリミット

X APIのレートリミットはエンドポイント、認証方法、アカウントティアによって異なり、時間とともに変化する。常に:

  • ハードコードされた仮定を立てる前に現在のX開発者ドキュメントを確認する
  • 実行時に x-rate-limit-remainingx-rate-limit-reset ヘッダーを読み取る
  • コード内の静的テーブルに頼らず、自動的にバックオフする
import time

remaining = int(resp.headers.get("x-rate-limit-remaining", 0))
if remaining < 5:
    reset = int(resp.headers.get("x-rate-limit-reset", 0))
    wait = max(0, reset - int(time.time()))
    print(f"Rate limit approaching. Resets in {wait}s")

エラーハンドリング

resp = oauth.post("https://api.x.com/2/tweets", json={"text": content})
if resp.status_code == 201:
    return resp.json()["data"]["id"]
elif resp.status_code == 429:
    reset = int(resp.headers["x-rate-limit-reset"])
    raise Exception(f"Rate limited. Resets at {reset}")
elif resp.status_code == 403:
    raise Exception(f"Forbidden: {resp.json().get('detail', 'check permissions')}")
else:
    raise Exception(f"X API error {resp.status_code}: {resp.text}")

セキュリティ

  • トークンをハードコードしない。 環境変数または .env ファイルを使用する。
  • .env ファイルをコミットしない。 .gitignore に追加する。
  • トークンが漏洩した場合はローテーションする。 developer.x.comで再生成する。
  • 書き込み権限が不要な場合は読み取り専用トークンを使用する。
  • OAuthシークレットを安全に保管する — ソースコードやログに保存しない。

コンテンツエンジンとの統合

content-engine スキルを使用してプラットフォームネイティブなコンテンツを生成し、X API経由で投稿する:

  1. コンテンツエンジンを使用してコンテンツを生成する(Xプラットフォームフォーマット)
  2. 長さを検証する(ツイート1件あたり280文字)
  3. 上記のパターンを使用してX API経由で投稿する
  4. public_metricsでエンゲージメントを追跡する

関連スキル

  • content-engine — X向けのプラットフォームネイティブコンテンツを生成する
  • crosspost — X、LinkedIn、その他のプラットフォームでコンテンツを配信する
Source repo
affaan-m/ECC
Skill path
docs/ja-JP/skills/x-api/SKILL.md
Commit SHA
4e973d3eaf92
Repository license
MIT
Data collected