Tagged Questions
1
vote
1answer
37 views
Get questions content from StackOverflow API
I need to get the question content from StackOverflow site.
I already built the functions that parse the HTML for a question, and return me the question content.
But, I found that there is an API, ...
1
vote
1answer
22 views
Questions returned by /questions/{ids}/related do not contain link properties
The API docs claim that /questions/{ids}/related return question objects, but I can't find a link property on the returned questions at all.
Is there some sort of workaround to find the link for a ...
0
votes
1answer
61 views
JSON parsing, won't work
Hi i'm using the stackapps api, retrieving questions by tags the code works well, and the json is returned, now i need to parse the json and i think there is somenthing wrong with my code:
$.ajax({
...
0
votes
2answers
46 views
Ajax get questions by tags ERROR
i'm trying getting questions by tags.
this is my simple code and i'm running this from my http://localhost:
<script type="text/javascript">
$(function(){
$.ajax({
...
3
votes
1answer
42 views
Elections nominations posts not showing up in API
I know that it's probably unintended that the Primary voting scores were leaked by the API, but I think if you're going to remove it, then at least make it official, so I won't have to wonder if it's ...
1
vote
1answer
99 views
Non-verbatim search strings in py-stackexchange
Hello,
I am writing a python program with py-stackexchange that takes a query and returns a list of urls to questions with that query in the title. Here's the code:
#!c:/Python27/python.exe -u
...
2
votes
1answer
208 views
Retrieving list of c# questions
I am trying to retrieve list of c# questions using http://api.stackoverflow.com/1.0/questions?title=true&tagged="c#".
But I get JSON response related to c questions.
Response :
{
"total": ...
2
votes
1answer
110 views
How to check if a given question is changed
What is the fastest way to check if a question is changed using the API calls?
For my purpose (a cache), a question is considered changed if:
A new comment is added to the question or to any of its ...
1
vote
1answer
45 views
questions/id is sometimes missing an owner?
Every once in a while when I query: http://api.stackoverflow.com/1.0/questions/id I get a question back that is missing the owner field. Is this expected? I haven't seen anything about owner being ...
1
vote
1answer
91 views
How to control vote count for individual user?
How do I find if user has already voted for a particular question/answer?
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 ...
2
votes
0answers
33 views
How should I understand “timeline_type”: “votes” record in question timeline?
Take a look at the partial results of this query:
{
"timeline_type": "votes",
"post_id": 2544061,
"creation_date": 1269993600,
"owner": {
// omitted for brevity
},
"action": "7 ...
1
vote
1answer
105 views
I can't get a response for /questions/{id} in Chrome Extension
I'm writing a Chrome Extension that queries the API. Using jQuery, I have the following code called from my background page:
$.ajax({
url: 'http://api.stackoverflow.com/0.8/questions/' + id
...
5
votes
1answer
90 views
Getting questions with multiple tags
http://api.stackoverflow.com/0.8/questions/tagged/gwt,google-app-engine returns nothing, but http://stackoverflow.com/questions/tagged/gwt+google-app-engine does have plenty of entries. And ...
