You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While testing the dev branch I noticed a problem with pagination: the starting_after parameter keeps increasing, but never resets back to 0 which leads to incomplete data being returned after subsequent calls to that same method.
That is due to the fact that a python dictionary is defined as the default parameter in the _get_data method.
This is not a good practice (example reference) and should be set to None instead.
The text was updated successfully, but these errors were encountered:
While testing the
dev
branch I noticed a problem with pagination: thestarting_after
parameter keeps increasing, but never resets back to 0 which leads to incomplete data being returned after subsequent calls to that same method.That is due to the fact that a python dictionary is defined as the default parameter in the _get_data method.
This is not a good practice (example reference) and should be set to None instead.
The text was updated successfully, but these errors were encountered: