Tagged Questions
1
vote
1answer
20 views
The inname parameter does not work with multiple parameters
I am trying to get details by passing semicolon delimited list in inname paramter but it is not working.
I tried below API call:
...
1
vote
1answer
17 views
Documentation of /users/{id}/top-answer-tags conflicts with implementation.
According to the documentation:
/users/{id}/top-answer-tags or /me/top-answer-tags – Get the top 30 tags (by score) a single user has posted answers in.
However in practice, when retrieving data ...
2
votes
1answer
15 views
The “/tags/{tags}/wikis” API does not return the proffered “body_last_edit_date” or “excerpt_last_edit_date” fields
The API for /tags/{tags}/wikis offers body_last_edit_date and excerpt_last_edit_date fields.
Both are selected in the default filter. But neither are actually returned even for tags I'm 100% sure ...
2
votes
1answer
49 views
Method /users/{id}/top-answer-tags is returning wrong results
I'm trying the following request:
(555004 happens to be my user id)
http://api.stackoverflow.com/1.1/users/555004/top-answer-tags
and I'm a bit confused by the result:
{
top_tags: [
{
...
4
votes
1answer
50 views
You can gain reputation from edits to tag wikis, although they are not accessible through the API.
Reputation gain from edits to tag wikis appear through the API; the API reports them as answers, but fetching them via the /answers route does not work.
Case in point:
My accepted edit (+2 rep)
My ...
4
votes
1answer
65 views
What's the difference between tags soapi.cs and soapi.js to get a bug triggered by the former?
Right now questions tagged soapi.cs returns a HTTP status code 404 (for various HTTP clients) while questions tagged soapi.js does not.
Interestingly though, soapi.cs seems to work just fine in other ...
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 ...
1
vote
1answer
111 views
Why is sort by name reverse alphabetical?
It makes sense that reputation or date should sort descending, but name? I tested both /users and /tags and they sort reverse alphabetical, so Z before A. Is that by design or just a side effect of ...
4
votes
1answer
70 views
Getting error 4002 when calling tags method without a sort parameter
According to the documentation, calling the tags method without a sort parameter should return the recently used tags, since the default sort is by activity.
Instead, I get an error 4002 with the ...