Tagged Questions
0
votes
0answers
22 views
Why does my request for pagesize=100 only return 30 results?
I am running the following query, and ones very similar to it, to retrieve a list of my own answers:
...
1
vote
1answer
19 views
Answer up/down vote count not being returned in filter
As the picture shows, the up_vote_count and down_vote_count answer properties are selected but not returned. What gives?
6
votes
1answer
199 views
Why these questions do not have a title?
Hitting the following /questions route:
http://api.stackoverflow.com/1.0/questions/74?pagesize=1&page=1
the endpoint returns this JSON data:
{
"total": 1,
"page": 1,
"pagesize": 1,
...
4
votes
2answers
80 views
/users/{id}/answers - broken
Have not checked other routes, as I am busy with other things, but a failing test pointed this out...
GOOD: http://api.stackoverflow.com/1.0/users/242897/answers?min=4&sort=votes
{
"total": ...
1
vote
1answer
58 views
Problem getting a users answers within a date range
This issue is similar to http://stackapps.com/questions/768/problem-getting-a-users-questions-within-a-date-range. Only this time I'm calling a different api and getting unexpected results.
I'm ...
4
votes
1answer
78 views
The /search route is ignoring the answers parameter.
The answers parameter was recently added to most of the requests that return a list of questions. See: Don’t include answers in question lists by default
It looks like the /search request got left ...
2
votes
1answer
59 views
Answers parameter not functional
For example the following:
http://api.stackoverflow.com/0.8/questions?answers=true
doesn't return answers.
0
votes
1answer
73 views
How to sort answers to question?
If I retrieve a question like so:
http://api.stackoverflow.com/0.8/questions/1429951&sort=votes
I expect the answers to be sorted by votes, but they're not.
How can I do this?