Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: 010eb12f-837b-4685-892d-0a39f76a98f5
dockerImageTag: 2.0.2
dockerImageTag: 2.0.3
dockerRepository: airbyte/source-facebook-pages
documentationUrl: https://docs.airbyte.com/integrations/sources/facebook-pages
githubIssueLabel: source-facebook-pages
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
version = "2.0.2"
version = "2.0.3"
name = "source-facebook-pages"
description = "Source implementation for Facebook Pages."
authors = [ "Airbyte <contact@airbyte.io>",]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ definitions:
stop_condition: "{{ response.paging == '' or not response.paging.get('next') }}"
page_size: 100
page_size_option:
field_name: "page_size"
field_name: "limit"
inject_into: "request_parameter"
page_token_option:
type: RequestOption
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/facebook-pages.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ See Facebook's [documentation on rate limiting](https://developers.facebook.com/

| Version | Date | Pull Request | Subject |
|:--------|:-----------|:---------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| 2.0.3 | 2025-12-01 | [70248](https://github.com/airbytehq/airbyte/pull/70248) | Use correct pagination parameter name (`limit` instead of `page_size`) |
| 2.0.2 | 2025-12-01 | [70258](https://github.com/airbytehq/airbyte/pull/70258) | Use Post stream for check, handle 400 error in Page stream |
| 2.0.1 | 2025-11-27 | [70242](https://github.com/airbytehq/airbyte/pull/70242) | Refresh in-app documentation to reflect v24 API version |
| 2.0.0 | 2025-11-18 | [69714](https://github.com/airbytehq/airbyte/pull/69714) | Upgrade Facebook API to v24.0 |
Expand Down
Loading