When I call
sharing_list_shared_links(path=None, cursor=None, direct_only=None)
using the official Python SDK v2 the resulting ListSharedLinksResult contains the same cursor, which leads to an endless loop in the worst case (see code snippet). The has_more flag is true in every iteration.
cursor = None
while True:
result = api.sharing_list_shared_links(cursor=cursor)
for link in result.links:
store_link(link)
if not result.has_more:
break
cursor = result.cursor
We are using the account for continuous integration tests, which means that the account may somehow be broken.
Did anyone else experience the same behaviour?
Greets, Hannes