> ## 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.

# 按群组URL收集帖子

## 查询参数

<ParamField query="dataset_id" type="string" default="gd_lz11l67o2cb3r0lkj3" required>
  用于此请求的数据集 ID。

  <Warning>
    必须设置为 `gd_lz11l67o2cb3r0lkj3` 以收集**按群组的 Facebook 帖子**数据。
  </Warning>
</ParamField>

<ParamField query="notify" type="boolean" default={false}>
  请求完成时是否发送通知。
</ParamField>

<ParamField query="include_errors" type="boolean" default={true}>
  是否在响应中包含错误。
</ParamField>

## 请求体

<ParamField body="input" type="object[]" required>
  输入对象的数组。

  <Expandable title="properties">
    <ParamField body="url" type="string" required>
      要收集帖子的 Facebook 群组的 URL。
    </ParamField>
  </Expandable>

  #### 示例

  ```json wrap theme={null}
  {
    "input": [
      {"url": "https://www.facebook.com/groups/123456789"},
      {"url": "https://www.facebook.com/groups/987654321"}
    ]
  }
  ```
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "url": "https://www.facebook.com/groups/532855527252024/posts/2189486054922288/",
      "post_id": "2189486054922288",
      "user_url": "https://www.facebook.com/people/User/61557299394534/",
      "user_username_raw": "EnhleNandie Mhlutshwa",
      "content": null,
      "date_posted": "2026-03-26T19:05:20.000Z",
      "num_comments": 0,
      "num_shares": 0,
      "group_name": "Job Seekers Community",
      "group_id": "532855527252024",
      "group_url": "https://www.facebook.com/groups/532855527252024/",
      "group_category": "Public group",
      "group_logo": "https://...",
      "group_members": 226500,
      "group_created_at": "2019-07-17T07:27:18.000Z",
      "user_is_verified": false,
      "attachments": [],
      "post_type": "Post",
      "likes": null,
      "profile_id": "61557299394534"
    }
  ]
  ```
</ResponseExample>
