python-twitch-client
python-twitch-client copied to clipboard
Issue with Twitch v5 Users - offset parameter does not affect get_follows method
Test done: ran twitch_client.users.get_follows() twice for the same user_id, using different offset parameter values: 0 and 1
- Expected outcome: different list of followed channels for different offset parameter values. For example, I expect the response for
offset=1to be shifted by one channel, when compared to the response for offset=0. - Observed outcome: the same exact response for the two different calls to the
get_follows()method with different offset parameter values.