Bug: Get article version file list using article version files endpoint#136
Open
HafeezOJ wants to merge 5 commits into
Open
Conversation
1 task
zoidy
reviewed
Jun 17, 2026
Comment on lines
+471
to
+473
| if retries > self.retries: | ||
| break | ||
| return article_version_files |
Collaborator
There was a problem hiding this comment.
Does this mean that if the max number of retries are exceeded, the code will return a partial list of article_version_files?
Comment on lines
+477
to
+478
| if retries > self.retries: | ||
| break |
Collaborator
There was a problem hiding this comment.
If the max number of retries are exceeded, this code will break out of the outer loop and the function returns nothing. Is that right?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
The file list in the article version details returned by the article details endpoint can contain up to 10 files, and there is no way to retrieve the file list for prior versions of an article if the article has more than one version. This is due to a bug in an update released by Figshare in September, 2025. Figshare has since rolled back the article version details endpoint to include a list of all the files in an article.
Figshare also released an endpoint (
/articles/{article_id}/versions/{version_id}/files) to obtain a specific article version's file list, which can be paginated to retrieve all the files in an article. This PR uses the article version file list endpoint to retrieve a list of all the files in an article.See #128
Documentation Update
Implementation Notes
Uses
/articles/{article_id}/versions/{version_id}/files