当我打电话
sharing_list_shared_links(path = None,cursor = None,direct_only = None)
使用官方Python SDK v2,生成的 ListSharedLinksResult 包含相同的游标,在最坏的情况下会导致无限循环(请参阅代码段)。 has_more 标志在每次迭代中都为真。
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
我们正在使用该帐户进行持续集成测试,这意味着该帐户可能会以某种方式被破坏。
其他人是否有同样的行为?
电贺, 汉纳斯