We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
after this call: videos, resp, err := client.Users.ListVideo("", vimeo.OptPerPage(100) )
videos, resp, err := client.Users.ListVideo("", vimeo.OptPerPage(100) )
i can see that: resp.TotalPage = 1156 but resp.LastPage = "/me/videos?per_page=100&page=12" so TotalPages should be 12, not 1156, correct?
resp.TotalPage = 1156
resp.LastPage = "/me/videos?per_page=100&page=12"
TotalPages
The text was updated successfully, but these errors were encountered:
Yep, it bad name, TotalPages is total video objects.
Thx, fix it, you can use the Total in the next release
Total
Sorry, something went wrong.
No branches or pull requests
after this call:
videos, resp, err := client.Users.ListVideo("", vimeo.OptPerPage(100) )
i can see that:
resp.TotalPage = 1156
but
resp.LastPage = "/me/videos?per_page=100&page=12"
so
TotalPages
should be 12, not 1156, correct?The text was updated successfully, but these errors were encountered: