Indicates that a feature request has been implemented, a bug has been fixed, or another type of request has been processed.
5
votes
0answers
101 views
please expose stackauth via a url that is consistent with the api
Most libraries and apps need to version themselves by adding the version number to the url and subsequently most of the http request code includes this information in the url building process.
the ...
8
votes
1answer
141 views
Where did the “apps” tab disappear?
I may just be missing something, but there used to be an "apps" tab on the main page, which showed you a (sorted by vote) list of all the apps and libraries.
I can't find it anymore. Where did it ...
2
votes
1answer
39 views
/answers/{id} summary incorrect
/answers/{id}
Gets a set of questions enumerated in id
should probably be
Gets a set of answers enumerated in id
5
votes
3answers
305 views
Get Site Icon or Icon Url
Is there a way to get the icon or the IconUrl of the site so I can put it in my app like the DisplayName?
8
votes
2answers
163 views
/search intitle arg is case sensitive
This seriously cripples any search capabilities.
Consider:
http://api.stackapps.com/0.8/search?intitle=soapi&order=desc&sort=activity
vs
...
2
votes
1answer
49 views
Why does /users/{id}/answers, which returns an array of answers, have an optional 'answers' flag?
I would assume that if you are requesting the route '/users/{id}/answers' that you wish to receive some answers.
5
votes
1answer
70 views
The tagged parameter does not work with multiple tags
Take these two API calls:
http://api.stackoverflow.com/0.8/questions?tagged=php;rant
http://api.stackoverflow.com/0.8/questions/tagged/php;rant
A couple of problems:
Shouldn't they return the ...
6
votes
1answer
356 views
API Suggestion: suppress http error code when jsonp is specified
Conclusion: fast response by Kevin enables the JSONP functionality of the API to assume it's rightful description of awesome.
http://soapi.info/Code/JS/Stable/ErrorTest.htm
The JSONP functionality ...
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.
2
votes
2answers
67 views
Order parameter not functional
Consider these two API calls:
http://api.stackoverflow.com/0.8/questions?pagesize=1&sort=votes&order=desc
http://api.stackoverflow.com/0.8/questions?pagesize=1&sort=votes&order=asc
...
7
votes
2answers
147 views
Don't include answers in question lists by default
Right now, question list API queries (such as /questions, /questions/unanswered, /user/{id}/questions and so on) also return at most 30 answers (apparently) for each question. While this might be ...
2
votes
2answers
90 views
Why my /mentioned page return 404?
http://api.stackoverflow.com/0.8/users/213464/mentioned?type=jsontext
{
"error": {
"code": 404,
"message": "The server has not found anything matching the Request-URI."
}
}
Its ...
4
votes
2answers
101 views
Add optional parameter to get only paging information?
On methods that support total/page/pagesize add an optional parameter to get just those fields when making a request. (pageInfo=true).
I am thinking specifically in apps that have real-time like ...
2
votes
1answer
65 views
API Help Suggestion: include range [1, 100] on pagesize
I see that range is being used to indicate valid range on most numeric parameters
e.g.
32-bit integer, range [0, 2,147,483,647]
32-bit integer, range [1, 2,147,483,647]
The valid range for ...
3
votes
1answer
87 views
Are we going to get a Protected Date field in Question responses?
Now that questions can be marked protected, will this info be available via the API?
3
votes
2answers
70 views
On /users method id parameter does not work
Calling /users method with id parameter returns a list of users and not the user expected.
http://api.stackoverflow.com/0.8/users?id=23234
Could be a documentation "bug" on help page:
...
2
votes
1answer
73 views
Question sort: change active to activity?
I noticed the sort newest for /questions, /questions/tagged/{tags} and /questions/unanswered was changed to creation recently, making it more consistent with other methods. Could the sort active for ...
1
vote
1answer
65 views
help page suggestion: position required parameters at top
in the case of id, it is now placed at the bottom of the page.
It makes sense to place required parameters at the top of the page with a slight separation, perhaps an <hr> or an icon.
3
votes
1answer
74 views
Add moderator-only flag to tags API?
Currently there is no way to distinguish between normal and moderator only tags.
2
votes
1answer
87 views
help page suggestion: indication of integral values vs real numbers
number is an very ambiguous term.
It would be helpful if there was an indication of values that can return as non-integral.
In a javascript context this is not an issue, but most devs, myself ...
1
vote
2answers
84 views
Can we have maximum length of string in API help pages?
For the type "string", I think there is some upper limit of character count.
For example,
post title : 200 characters
post body : 30000 characters
In the help page, currently like this
"body": {
...
2
votes
1answer
58 views
/users/{id}/badges - multiple identical results
Each badge returned in the list of results from /users/{id}/badges already contains an award_count indicating how many times the badge was awarded for the particular user attached to the badge. In ...
4
votes
2answers
73 views
Possible bug in the help page?
There are some weird dot things in this help page:
http://api.stackoverflow.com/0.8/help/method?method=users/{id}/badges
What's up?
1
vote
1answer
70 views
Retrieving a post with a specific ID
According to this question (and its answer), questions and answers are using the same index to determine their ID. In other words:
Question with ID #1
Answer with ID #2
Answer with ID #3
Answer ...
0
votes
1answer
30 views
Favorites api gives wrong results when sorted by added
For example, please compare http://api.stackoverflow.com/0.8/users/111391/favorites?sort=added with ...
0
votes
1answer
32 views
help page format issue: revisionGuid
http://api.stackoverflow.com/0.8/help/method?method=revisions/{id}/{revisionguid}
revisionGuid is inconsistent.
revisionguid seems appropriate (and will remove one special case from my api parser).
1
vote
1answer
33 views
help page format issue: missing parameter
/users/{id}/tags is missing id parameter
fixing this will remove one more special case from my parser.
2
votes
3answers
131 views
display_name isn't always there (should have OpenID name if needed)
usually in the owner dictionary there is a display_name value to give the username. But in a few questions it simply doesn't exist and I can't see why only those questions: eg, this excerpt from the ...
3
votes
1answer
31 views
Minor typo on help page
On the API Routes help page, this:
/users/{id}/favorites Gets summary information for the questions that have been favorited a set of users.
should probably be:
/users/{id}/favorites Gets ...
2
votes
1answer
54 views
The users/{id}/timeline method is returning an extra result.
The users/{id}/timeline method is returning 31 results by default, and one more result than specified by the pagesize parameter.
Example:
...
4
votes
1answer
67 views
Questions method does not return answers
I think questions method also return answers too and the help page says so
http://api.stackoverflow.com/0.8/help/method?method=questions
....
"answers": [
{
"answer_id": {
...
7
votes
1answer
65 views
Get the Site Display Name from the API
Is there a way to get the Site Name, like StackOverflow or ServerFault, etc.? In my app I let the user enter a url with a api for a Site and I will be great If I can tell him something like: "You Are ...
3
votes
1answer
20 views
The search method is returning an extra result.
By default the /search method is supposed to return 30 results per page, but it's returning 31. I only tested a few other values for pagesize but it looks like it always returns one extra result.
In ...
1
vote
1answer
105 views
Last activity date
It would be useful if the API allowed you to return items based on their last activity date. Let's take a question for example.
/questions/fromlastactivitydate=XYZ&tolastactivitydate=XYZ
All ...
5
votes
2answers
52 views
Users timeline help claims to be pageable but isn't
The help page for the users timeline call claims that the timeline can handle paging but it doesn't seem to be able to. The output doesn't have the total count of pages, etc and the page attribute ...
1
vote
1answer
30 views
Can API stats return real revision number instead of 1234.5678?
Currently it returns like this
"revision": "1.0.1234.5678"
And looks like that number never changed.
So, Can API return real revision number whenever there is an update?
It will be very useful ...
3
votes
1answer
33 views
Help page for search is missing
It looks like search is available in the current API but there is no help page for it.
http://api.stackoverflow.com/0.8/search?intitle=test
3
votes
1answer
79 views
The Faq Has a Broken Link
Currently the first link in the FAQ points to http://dev.stackapps.com/?tab=apps. It should link to http://stackapps.com/?tab=apps.
Simple fix, but it confused me for a short time.
4
votes
2answers
83 views
Document fields that may be not be included in responses
I'd like to see documentation on what fields may not be included in responses or, alternatively, which fields are guaranteed to be included. Currently it's a little confusing because some fields may ...
1
vote
1answer
47 views
Revision help URL contains wrong header
There are two revision urls listed on the help page but they both seem to contain the same detailed information. The header for the non-guid version contains the url for the one that takes a guid. ...
4
votes
2answers
123 views
Request with Invalid key still return the content and rate limit stepped down into No Key Limit
For example
http://api.stackoverflow.com/0.8/stats?key=TEST1234&type=jsontext
Request with Invalid key still return the content and rate limit stepped down into No Key Limit
...
0
votes
1answer
111 views
“Get an API key” on stackapps.com/about page is incorrect
the "Get an API key" link listed on the stackapps about page is incorrect. It points to http://stackapps.com/app/register and a lovely picture of Zardoz instead of the correct ...
0
votes
1answer
44 views
questions/{id}/timeline documentation: timeline_type values not listed
The timeline_type for post timelines just says "string" for the "values". From a cursory look at a few questions, I've seen the following types of events:
question
answer
comment
revision
votes
...
2
votes
1answer
47 views
questions/{id} help page sort parameter description is inconsistence with others
The description of the Sort parameter in questions/{id} help page is inconsistent with those of other pages.
On the questions/{id} help page:
sort (optional):
How a collection
should ...
3
votes
1answer
68 views
Methods that return comments document body and comments parameters but they do nothing
Methods that return comments document the "body" and "comments" parameters, but they have no effect on the results, which cannot include comments and always include the body.
Specific methods:
...
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 ...
4
votes
1answer
95 views
Two minor typos in the API help
In http://api.stackoverflow.com/0.8/help
/users/{id}/answers Gets answer summary informatino for the user with 'id'.
and in the Returns section of ...
3
votes
2answers
54 views
Inconsistency in the handling of multiple IDs with a duplicate
There appears to be some inconsistency in the way multiple ids are being handled, especially when a duplicate exists.
Duplicate ID is significant
For example, when requesting a timeline of multiple ...
2
votes
1answer
48 views
/users/{id} and /users/{id}/timeline - filter parameter?
Both /users/{id} and /users/{id}/timeline say they take a filter parameter for users' names, but it seems to do nothing. Are they not supposed to be there?
3
votes
1answer
85 views
Two minor typos in the “Register your Application” form
In the help text (on the right hand side) for the Application Name field on http://stackapps.com/apps/register:
I think this should be changed: " ... is built on the our platform ...". For example, ...
