Here is test code。
when the count reaches approximately 2300, The cursor will repeatedly fetch data from the beginning of the list.
cursor := ""
userId:="1323413840235696130"
num := 0
for {
users, cursor, err = scarper.FetchFollowingByUserID(userId, 200, cursor)
if err != nil {
return err
}
num += 50
fmt.Println(num)
}
Here is test code。
when the count reaches approximately 2300, The cursor will repeatedly fetch data from the beginning of the list.