Tagged Questions
3
votes
1answer
28 views
Querying “standard meta tags” for their tag wikis wrongly says they have none
I'm checking which tags have tag wiki excerpts in my code. It looks like /tags/{tags}/wikis is the right API since the tag info API doesn't even give a boolean for tag wiki excerpt presence.
But ...
1
vote
1answer
43 views
/me API endpoint returning 500 error
I'm making an authenticated call to /me:
https://api.stackexchange.com/2.0/me?access_token=[redacted]&site=stackoverflow&key=[redacted]
But it's returning:
...
3
votes
1answer
43 views
Typo in API docs: “temporarility_unavailable”
https://api.stackexchange.com/docs/authentication
"temporarility" should probably be "temporarily"
1
vote
1answer
28 views
Typo in throttle violation error message
I was just playing around with the API locally and got throttled for the questions and answers methods (the only two I was using).
Anyway, I noticed there’s a small typo in the error message that’s ...
3
votes
1answer
34 views
Is there an API to fetch tags related to a given tag?
I'm interested in making a tool that explores the tags of a site for tags which should be merged or mention each other in tag wikis etc.
On the page of any given tag there is a column on the right of ...
1
vote
0answers
38 views
Wrong API response?
Well, if you look here, you'll see i have
"down_vote_count": 94,
But if you look here on my Stackoverflow profile, you see that my down vote count is 64.
For those who would ask if I'm sure ...
1
vote
1answer
21 views
rep losses aren't reflected in api
This includes rep recalcs (e.g., the latest) and (speculative) when people take upvote back.
First case you can see on standard stackauth/users query: it displays meta reputation before recalc.
...
9
votes
2answers
160 views
Why does this Stack Overflow API query return binary data?
The Stack Overflow API query
http://api.stackoverflow.com/1.1/search?tagged=javascript&intitle=%3Cdiv%3E
returns what appears to be binary data:
...
3
votes
1answer
54 views
API search page size limit mismatch
The 1.1 API help text for search says that the pagesize parameter can go up to 100. Indeed, passing a value up to 100 returns some results, while passing pagesize=101 yields an HTTP 400 status (Bad ...
4
votes
1answer
141 views
API ignores jsonp callback after initial request - erroneous caching?
This bug is still prevalent, appears to be cache related. Two identical requests return different data: first request respects jsonp query parameter, all subsequent requests ignore it until (I ...
1
vote
1answer
32 views
fromdate is ignored for /posts/{id}/comments requests
The api docs:
http://api.stackoverflow.com/1.0/help/method?method=posts/{id}/comments
The test request.
You can see comment itself here, it's four months old, while cutoff date in request is less ...
5
votes
1answer
62 views
API 'search' method with 'tagged' parameter
From the docs for tagged paremeter:
List of tags delimited by semi-colons of which at least one must be on a question
Yet, when I execute this query ...
3
votes
1answer
745 views
Wrong content-type in JSONP calls
When passing jsonp parameter, the API returns "application/json" instead of "application/javascript".
I found this because if you do:
<script ...
1
vote
1answer
56 views
Pro Webmasters Meta API not working.
Try this:
http://api.meta.webmasters.stackexchange.com/0.9/questions?type=jsontext
I can't get it to work, even though it's listed in StackAuth.
6
votes
1answer
137 views
In the timeline the ability to know what events belong to what question
Take this example:
http://api.stackoverflow.com/0.9/questions/3165492;3182016/timeline
Would it not make sense to have the question_id as a parameter on each timeline object? It makes the timeline ...
2
votes
2answers
128 views
StackApps API is down.
It seems to not be responding to any request.
* at least according to downforeveryoneorjustme.com
Update: seems like all the SE sites are down :(
3
votes
1answer
1k views
SIlverlight 3 ClientHttp vs BrowserHttp stack: no cross domain policy means no gzip for Silverlight
I notice that even if I send accept-encoding=gzip the response does not seem to be compressed. ( it is late and i was conflating 'accept' with 'accept-encoding')
Should we expect, in the 1.0 ...
1
vote
3answers
135 views
API not returning anything near the actual website
The API /questions page is not returning anything like the list of questions on the actual SO site.
This is the first question of the 0.8/questions
{
"total": 705769,
"page": 1,
"pagesize": ...
1
vote
1answer
64 views
/users/{id}/tags - broken
looks like touching the id parameter description broke the internet.
http://api.stackoverflow.com/0.8/users/242897/tags
should/was working
6/1/2010 -1:11AM - working
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 ...
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 ...
0
votes
1answer
35 views
/questions/unanswered and /tags allow id parameter, but it does nothing
The /questions/unanswered and /tags queries both document (as required) and allow an "id" parameter. You can use it as /questions/unanswered?id=1;2;3, but it does nothing (that I can tell) and doesn't ...