airbyte-source-facebook-pages 2.0.1__py3-none-any.whl → 2.0.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: airbyte-source-facebook-pages
3
- Version: 2.0.1
3
+ Version: 2.0.2
4
4
  Summary: Source implementation for Facebook Pages.
5
5
  Home-page: https://airbyte.com
6
6
  License: ELv2
@@ -1,6 +1,6 @@
1
1
  source_facebook_pages/__init__.py,sha256=VZVUqQ18X8IkiApSkuDl9cXhuxsCFH4LCjHzcwmY0iI,138
2
2
  source_facebook_pages/components.py,sha256=GJLbduA0kYHSD-2JVhieR6us_KszmFbcI1l_nsHZCDE,4704
3
- source_facebook_pages/manifest.yaml,sha256=r2KLAtUxoq_0eUdQmq02_kw1EdBLmB_HWvOq1dktYZc,10626
3
+ source_facebook_pages/manifest.yaml,sha256=nYDHQ3KuXa5kiJF2uP5Ly2VNCFDMsJgQWppYxzYZswE,11292
4
4
  source_facebook_pages/run.py,sha256=LaHnyS63ROFHA8RA-xgN83CGtq6clz2UlmX3UcxxAQk,253
5
5
  source_facebook_pages/schemas/page.json,sha256=2IU2wycPRqVi9OCQfqGJcpRXiJczxsZmJhIwB8UgK6g,51056
6
6
  source_facebook_pages/schemas/page_insights.json,sha256=lmNt_NuUjr25eIC81L5mZcIfBnGnfCNIpkFKx-Lh7M8,734
@@ -72,7 +72,7 @@ source_facebook_pages/schemas/shared/videolist.json,sha256=h9rK-JRbsV7EEzxM0ffLw
72
72
  source_facebook_pages/schemas/shared/voipinfo.json,sha256=lwkslyCbqXCBlusPZwXW40ZXUkf_PyR2dmboqT1fCpo,508
73
73
  source_facebook_pages/source.py,sha256=Zd1H8OVfIytOTB99Nb2UWQtt-JAq9NGAVJsqAwWdwmQ,483
74
74
  source_facebook_pages/spec.yaml,sha256=rbbne2qnCX84pKYklIvETCKloS9LuWMvnFA3SXEc1cc,1019
75
- airbyte_source_facebook_pages-2.0.1.dist-info/METADATA,sha256=wbnneZC_EpwQeshGGQ-PFzQQYHBZ7UzEcCUl0ZONUJc,7490
76
- airbyte_source_facebook_pages-2.0.1.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
77
- airbyte_source_facebook_pages-2.0.1.dist-info/entry_points.txt,sha256=AJV3GvUFQ9l36Gr9_Qa8nNl5Es2qOZMTKx2gugXnyvQ,71
78
- airbyte_source_facebook_pages-2.0.1.dist-info/RECORD,,
75
+ airbyte_source_facebook_pages-2.0.2.dist-info/METADATA,sha256=2JjG_JFkplvzZbuZzCVi1tRkixfbCeqEzxYcQ792_oI,7490
76
+ airbyte_source_facebook_pages-2.0.2.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
77
+ airbyte_source_facebook_pages-2.0.2.dist-info/entry_points.txt,sha256=AJV3GvUFQ9l36Gr9_Qa8nNl5Es2qOZMTKx2gugXnyvQ,71
78
+ airbyte_source_facebook_pages-2.0.2.dist-info/RECORD,,
@@ -11,13 +11,16 @@ definitions:
11
11
  url_base: "https://graph.facebook.com/v24.0"
12
12
  http_method: "GET"
13
13
  error_handler:
14
- type: CompositeErrorHandler
15
- error_handlers:
16
- - type: DefaultErrorHandler
17
- response_filters:
18
- - http_codes: [400]
19
- action: RETRY
20
- - type: DefaultErrorHandler
14
+ type: DefaultErrorHandler
15
+ response_filters:
16
+ - action: FAIL
17
+ error_message_contains: This application has not been approved to use this API
18
+ error_message: The application used to create the Facebook access token has not been approved to use this API. Possibly, some of the requested fields require additional scopes/permissions. The Airbyte OAuth App is being in process of requesting needed scopes. In the meantime, we suggest you use your own access token with the necessary permissions. Please, visit https://docs.airbyte.com/integrations/sources/facebook-pages#creating-your-own-oauth-app for more info about your own OAuth App.
19
+ - action: FAIL
20
+ error_message_contains: Tried accessing nonexisting field
21
+ error_message: Request contains invalid/deprecated field.
22
+ - http_codes: [400]
23
+ action: RETRY
21
24
  authenticator:
22
25
  type: CustomAuthenticator
23
26
  class_name: source_facebook_pages.components.AuthenticatorFacebookPageAccessToken
@@ -348,4 +351,4 @@ streams:
348
351
 
349
352
  check:
350
353
  stream_names:
351
- - "page"
354
+ - "post"