A question about how the API returns answers.
0
votes
0answers
25 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:
...
3
votes
0answers
20 views
Should feature-requests, for third party apps, be flagged as “not an answer”?
I spotted this "answer" as a first-time post:
Feature Request
Please add support for proxies.... It would be helpful to people behind proxies.
Like "ME"
I was going to flag it as "Not ...
2
votes
1answer
29 views
Get accepted answers from Stack Overflow using Stack Overflow API 2.1
I want to fetch only my accepted answers from Stack Overflow using the API 2.1 and currently I've following code
$data = ...
2
votes
0answers
12 views
Get tags from question through an answer
I'd like to use this function: http://api.stackexchange.com/docs/answers-on-users to get a list of answers from a user.
The key element that I need though is what the question was tagged as, is there ...
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?
3
votes
2answers
178 views
What is the correct way to get the stackoverflow.com URL for an answer via the API?
A while ago I made a little "Recently answered on Stackoverflow" sidebar widget for my homepage. Currently this works by filtering answers out of the user feed however I thought I'd update it to make ...
5
votes
0answers
143 views
SkeetNotifier: A Tray Notifier Application for Jon Skeet's answers
Screenshot
About
A tray application for Windows that notifies you about the newest answers from Jon Skeet.
Icon approved by Jon Skeet!
License
http://unlicense.org/
Source
...
8
votes
0answers
140 views
No Answering: prevent answering questions
Do you answer too many questions on stack sites? Does answering questions put you into a cycle of debating with people you'd rather not be spending time on? Then this app is for you.
It does one ...
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": ...
2
votes
3answers
102 views
Ideas for dealing with this pagination problem?
Okay, here is the problem:
Certain questions contain more than one page's worth of answers. Given a sort method and an answer id, how can we figure out which page the answer is on?
Any suggestions ...
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
82 views
Questions with accepted answers
I know that you could technically loop through the answers returned when you ask for /questions/{id} to see if an answer has been accepted, but it would be AWESOME if there was a top level boolean ...
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?
2
votes
1answer
82 views
Why answers don't have a “locked” attribute?
When looking at an answer, I can see that there is no locked_date attribute, like there is for questions. IIRC, answers can be locked by moderators.
Also, if a post is unlocked, is that field ...