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
As the title states, when I call the 'photos' resource, some/most photos return an invalid comment_count
comment_count
Example call : GET https://api.500px.com/v1/photos?feature=user&user_id=14634089&sort=created_at
GET https://api.500px.com/v1/photos?feature=user&user_id=14634089&sort=created_at
The first photo returns a comment_count of 22
"photos": [ { "id": 201788617, "user_id": 14634089, […] "comments_count": 22, } ]
Whereas it actually only has 18 comments. And calling the /photos/:id/comments endpoint returns the proper count.
/photos/:id/comments
GET https://api.500px.com/v1/photos/201788617/comments
{ "media_type": "photo", "current_page": 1, "total_pages": 1, "total_items": 18, "comments": […] }
The number of extra comments in comment_count does not seem consistent either.
The text was updated successfully, but these errors were encountered:
Hey, thanks for reporting this. We've put a task to fix this soon. When we do, I'll update this issue and inform you.
Sorry, something went wrong.
No branches or pull requests
As the title states, when I call the 'photos' resource, some/most photos return an invalid
comment_count
Example call :
GET https://api.500px.com/v1/photos?feature=user&user_id=14634089&sort=created_at
The first photo returns a
comment_count
of 22Whereas it actually only has 18 comments.
And calling the
/photos/:id/comments
endpoint returns the proper count.GET https://api.500px.com/v1/photos/201788617/comments
The number of extra comments in
comment_count
does not seem consistent either.The text was updated successfully, but these errors were encountered: