sns-sdks / python-facebook

A simple Python wrapper for facebook graph api :sparkles: :cake: :sparkles: .
https://sns-sdks.github.io/python-facebook/
322 stars 84 forks source link

Bug with count in get_full_connections #264

Open Antonkoch999 opened 1 month ago

Antonkoch999 commented 1 month ago

Replace this: def get_full_connections( self, object_id: str, connection: str, count: Optional[int] = 10, limit: Optional[int] = None, **kwargs, ) -> dict:
to def get_full_connections( self, object_id: str, connection: str, count: Optional[int] = None, limit: Optional[int] = None, **kwargs, ) -> dict:

MerleLiuKun commented 1 month ago

Yes, the count is limit the total count, If you want get all, just pass count=None.