> ## Documentation Index
> Fetch the complete documentation index at: https://docs.brightdata.com/llms.txt
> Use this file to discover all available pages before exploring further.

# X (Twitter) 爬虫快速入门

> 在5分钟内设置Bright Data X Scraper API并收集您的第一个个人资料数据。

本教程向您展示如何使用 Bright Data X Scraper API 抓取 X（前称 Twitter）个人资料并获取结构化的 JSON 数据。

## 前置条件

* 一个 [Bright Data 账户](https://www.bright.cn/cp/start)（每月含 5,000 个免费积分）
* 已安装 cURL、Python 3 或 Node.js 18+

<Steps>
  <Step title="获取您的 API 密钥">
    转到您 Bright Data 账户中的[用户设置页面](https://www.bright.cn/cp/setting/users)并复制您的 API 密钥。

    如果您还没有账户，[请在 brightdata.com 注册](https://www.bright.cn/cp/start)。新账户每月可获得 5,000 个免费积分，无需信用卡。请参阅[免费套餐](/cn/general/account/billing-and-pricing/free-tier)。

    <Warning>
      您的 API 密钥仅在创建时显示一次。请安全地复制并存储它。
    </Warning>
  </Step>

  <Step title="发送请求">
    我们将使用**个人资料端点**发送同步请求。将 `YOUR_API_KEY` 替换为您的实际密钥：

    <CodeGroup>
      ```bash cURL theme={null}
      curl -X POST \
        "https://api.brightdata.com/datasets/v3/scrape?dataset_id=gd_lwxmeb2u1cniijd7t4&format=json" \
        -H "Authorization: Bearer YOUR_API_KEY" \
        -H "Content-Type: application/json" \
        -d '[{"url": "https://x.com/elonmusk"}]'
      ```

      ```python Python theme={null}
      import requests

      response = requests.post(
          "https://api.brightdata.com/datasets/v3/scrape",
          params={"dataset_id": "gd_lwxmeb2u1cniijd7t4", "format": "json"},
          headers={
              "Authorization": "Bearer YOUR_API_KEY",
              "Content-Type": "application/json",
          },
          json=[{"url": "https://x.com/elonmusk"}],
      )

      print(response.json())
      ```

      ```javascript Node.js theme={null}
      const response = await fetch(
        "https://api.brightdata.com/datasets/v3/scrape?dataset_id=gd_lwxmeb2u1cniijd7t4&format=json",
        {
          method: "POST",
          headers: {
            "Authorization": "Bearer YOUR_API_KEY",
            "Content-Type": "application/json",
          },
          body: JSON.stringify([
            { url: "https://x.com/elonmusk" }
          ]),
        }
      );

      const data = await response.json();
      console.log(data);
      ```
    </CodeGroup>

    您应该会看到 `200` 状态码。这需要 10-30 秒。
  </Step>

  <Step title="查看响应">
    Bright Data X Scraper API 返回一个包含结构化个人资料数据的 JSON 数组：

    ```json theme={null}
    [
      {
        "user_name": "elonmusk",
        "name": "Elon Musk",
        "description": "Read @WallStreetSilv",
        "followers": 214000000,
        "following": 870,
        "number_of_tweets": 52000,
        "is_verified": true,
        "url": "https://x.com/elonmusk"
      }
    ]
    ```

    每个个人资料对象都包含涵盖粉丝数、个人简介、认证状态等字段。请查看[完整响应架构](/api-reference/scrapers/social-media-apis/twitter-profiles-collect-by-url)。
  </Step>
</Steps>

您已成功使用 Bright Data X Scraper API 抓取了第一个 X 个人资料。

## 常见问题

<Accordion title="我可以在一个请求中抓取多个个人资料吗？">
  可以。向输入数组添加更多对象即可。同步请求支持最多 20 个 URL。对于更大的批次，请使用[异步 `/trigger` 端点](/products/scrapers/scrapers-library/async-requests)。

  ```json theme={null}
  [
    {"url": "https://x.com/elonmusk"},
    {"url": "https://x.com/BillGates"},
    {"url": "https://x.com/NASA"}
  ]
  ```
</Accordion>

<Accordion title="收到 401 或 403 错误？">
  验证您的 API 密钥是否正确且未过期。从[账户设置](https://www.bright.cn/cp/setting/users)生成新密钥。有关详细信息，请参阅[身份验证指南](/api-reference/authentication)。
</Accordion>

<Accordion title="请求超时？">
  同步请求的超时时间为 1 分钟。如果请求超过此限制，它将自动切换到异步模式并返回 `snapshot_id`。对于大批量抓取，请使用[异步工作流](/products/scrapers/scrapers-library/async-requests)。
</Accordion>

<Accordion title="响应数据为空或不完整？">
  验证 X 个人资料 URL 是否可公开访问且格式正确。URL 应遵循 `https://x.com/username` 的模式。
</Accordion>

## 后续步骤

<CardGroup cols={3}>
  <Card title="发送您的第一个请求" icon="bolt" href="/products/scrapers/twitter/send-first-request">
    探索包含完整示例的两种端点类型。
  </Card>

  <Card title="异步批量请求" icon="layer-group" href="/products/scrapers/scrapers-library/async-requests">
    在单个批处理作业中抓取数百个 URL。
  </Card>

  <Card title="设置 Webhook" icon="webhook" href="/products/scrapers/scrapers-library/data-delivery">
    在抓取完成时自动接收结果。
  </Card>
</CardGroup>
