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

# 获取帖子转发列表

> 获取帖子的转发列表。

<div className="inline-flex items-center gap-2 px-4 py-2 bg-yellow-50 dark:bg-yellow-900/20 border border-yellow-200 dark:border-yellow-800 rounded-lg">
  <span className="text-base">🪙</span>
  <span className="text-sm font-medium text-yellow-900 dark:text-yellow-100"><span className="font-semibold">4 credits</span><span className="text-yellow-700 dark:text-yellow-300 ml-1">每次请求</span></span>
</div>

## 复制给 AI

<div className="my-6 rounded-xl border border-gray-200 bg-gray-50 p-5 dark:border-gray-800 dark:bg-gray-900/40">
  <div className="min-w-0">
    <p className="text-base font-semibold text-gray-900 dark:text-gray-100">🤖 为什么还要自己写代码？</p>
    <p className="mt-1 text-sm text-gray-700 dark:text-gray-300">让 AI 来处理重复工作。点击按钮即可复制一段整理好的提示词，用于 ChatGPT、Claude 或你常用的 AI 助手。</p>
  </div>

  <div className="mt-4">
    <button
      type="button"
      className="inline-flex items-center gap-2 rounded-md border border-emerald-300 bg-emerald-50 px-3 py-2 text-sm font-medium text-emerald-800 hover:bg-emerald-100 dark:border-emerald-700 dark:bg-emerald-900/30 dark:text-emerald-100 dark:hover:bg-emerald-900/50"
      onClick={() => navigator.clipboard.writeText(`我需要调用下面的 KeyAPI 接口，请根据提供的接口信息生成一份完整、可直接运行的 Python 示例代码。

## 接口信息

Endpoint: GET https://api.keyapi.ai/v1/facebook/post_share
摘要: 获取帖子转发列表

必需请求头:
- Authorization: Bearer <YOUR_API_KEY>

参数:
- post_id (必填): Facebook 帖子 ID. 示例: 961107826061238
- cursor (可选): 分页游标，用于获取下一页数据. 示例: AQHTUrvNHPh7RUNQngxR-R9_ctPok_evwISXfbaKv7NdwoBZZ7x7DuEXLL04oCBmP-drGPxRCIksfq7nCjLTbREz5w

## 代码要求

- 使用 Python \`requests\` 库
- 提供完整、可直接运行的示例
- 处理 HTTP 请求异常、超时以及非 2xx 响应
- 处理 JSON 解析异常
- 示例参数优先使用接口信息中提供的 Example
- 保持代码简单，避免不必要的封装和复杂设计`)}
    >
      <span>✨</span>
      <span>复制给 AI</span>
    </button>
  </div>
</div>


## OpenAPI

````yaml /zh/facebook.zh.openapi.json get /v1/facebook/post_share
openapi: 3.0.1
info:
  title: KeyAPI Facebook API 中文文档
  description: KeyAPI Facebook API 的中文参考文档，包含接口用途、参数说明、响应状态和示例结构。
  version: 1.0.0
servers:
  - url: https://api.keyapi.ai
    description: Production-KeyAPI
security:
  - JWT Bearer: []
tags:
  - name: 公共主页
  - name: 个人主页
  - name: 群组
  - name: 帖子与评论
  - name: 广告库
  - name: 活动
  - name: 搜索
  - name: Marketplace
  - name: 游戏
paths:
  /v1/facebook/post_share:
    get:
      tags:
        - 帖子与评论
      summary: 获取帖子转发列表
      description: 获取帖子的转发列表。
      parameters:
        - name: post_id
          in: query
          description: Facebook 帖子 ID。
          required: true
          example: '961107826061238'
          schema:
            type: string
            example: '961107826061238'
        - name: cursor
          in: query
          description: 分页游标，用于获取下一页数据。
          required: false
          example: >-
            AQHTUrvNHPh7RUNQngxR-R9_ctPok_evwISXfbaKv7NdwoBZZ7x7DuEXLL04oCBmP-drGPxRCIksfq7nCjLTbREz5w
          schema:
            type: string
            example: >-
              AQHTUrvNHPh7RUNQngxR-R9_ctPok_evwISXfbaKv7NdwoBZZ7x7DuEXLL04oCBmP-drGPxRCIksfq7nCjLTbREz5w
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties: {}
              example:
                code: 0
                message: success
                data:
                  results:
                    - id: '100071141804836'
                      name: Ki Ki II
                      url: >-
                        https://www.facebook.com/people/Ki-Ki-II/100071141804836/
                    - id: '100058981504110'
                      name: โ๋ก๋จอก บางปลา
                      url: null
                  cursor: >-
                    AQHTUrvNHPh7RUNQngxR-R9_ctPok_evwISXfbaKv7NdwoBZZ7x7DuEXLL04oCBmP-drGPxRCIksfq7nCjLTbREz5w
                requestId: 28f9ef09-dc77-4765-a451-5e1ca1225bce
          headers: {}
        '400':
          $ref: '#/components/responses/400'
        '401':
          $ref: '#/components/responses/401'
        '402':
          $ref: '#/components/responses/402'
        '429':
          $ref: '#/components/responses/429'
        '500':
          $ref: '#/components/responses/500'
      deprecated: false
      security:
        - JWT Bearer: []
components:
  responses:
    '400':
      description: Bad Request
      content:
        application/json:
          schema:
            type: object
            example:
              code: 400
              data: null
              message: 'Missing required parameter: handle'
    '401':
      description: Unauthorized
      content:
        application/json:
          schema:
            type: object
            example:
              code: 401
              data: null
              message: apiKey is null
    '402':
      description: Payment Required
      content:
        application/json:
          schema:
            type: object
            example:
              code: 402
              data: null
              message: apiKey quota is not enough
    '429':
      description: Too Many Requests
      content:
        application/json:
          schema:
            type: object
            example:
              code: 429
              data: null
              message: qps limit exceeded
    '500':
      description: Internal Server Error
      content:
        application/json:
          schema:
            type: object
            example:
              code: 500
              data: null
              message: Internal server error
  securitySchemes:
    JWT Bearer:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: |-
        接口鉴权凭证。请在请求 Header 中传入 `Authorization: Bearer <YOUR_API_KEY>`。
        可在 [Dashboard](https://keyapi.ai/app/dashboard) 获取你的 API Key。

````