1
vote
0answers
34 views

Attribute error while using the stackoverflow api wrapper for python on IDLE

This is the code that I use to access Stack Overflow: from stackexchange import Site, StackOverflow so = stackexchange.StackOverflow() for q in so.questions(pagesize=50): print q.title It runs ...
1
vote
0answers
39 views

Please differentiate between meta sites for beta versus normal sites, in the /sites method

Currently, in the /sites method, a site can have a site_state of: normal, open_beta, closed_beta, or linked_meta. This makes it easy to tell if a main site is in beta or not. But it becomes a 2 or 3 ...
2
votes
1answer
45 views

How about linking Stack Exchange to IFTTT?

Why is there no channel for Stack Overflow on IFTTT? It would be great if I can mash up the Stack Exchange website with other web-based services like Google Reader or GMail, receive a SMS or ...
0
votes
0answers
10 views

How to tell if a given tag name is a synonym?

I've found in one of my projects that I sometimes have a string that I need to check as to whether it's a tag or a tag synonym. To check if it's a tag synonym is easy using /tags/{tags}/info I can ...
0
votes
0answers
19 views

Could we add “has_tag_wiki” and “has_tag_wiki_excerpt” flags to the tag info API?

Currently the only way to check for existence of tags wikis and tag wiki excerpts is to fetch their actual contents using the tags wikis API /tags/{tags}/wikis But this returns the entire text ...
2
votes
1answer
28 views

Is there a way to get the edit URL for a tag wiki from the API?

I've been playing with a little webapp for tags of a certain kind for travel.SE (current pre-alpha version gist on github). One thing I would like to do is add links for the various tag-related ...
2
votes
1answer
31 views

Possible to return newest questions with a certain tag?

I am not finding a way to return a list of new questions by tag with the new stack exchange api. Am I missing something or is this not available? If this is not available, I most certainly request ...
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 ...
5
votes
1answer
69 views

API for user next achievement/badge requirement?

If you look at your user profile you can see: visited x days, x consecutive So for the achievement/badge "Fanatic - Visited the site each day for 100 consecutive day" I can calculate the number of ...
0
votes
0answers
40 views

Stack family site [duplicate]

Possible Duplicate: Can i make an internal Q&A site like StackExchange? I've had a brief look at the stackapps site and the StackExchage API, but I was unable to answer myself the ...
1
vote
1answer
141 views

Stackoverflow API - get “received” upvote count of a user.

I'm currently using the Stackoverflow API to get a list of detailed user information (via http://api.stackoverflow.com/1.1/usage/methods/users-by-ids). There is an attribute called "up_vote_count" ...
2
votes
0answers
39 views

Please add “total votes on questions” and “total votes on answers” into /user/{id} API

Is there any chance that the following methods: Total votes on questions (N.B. NOT total score but total number of votes) Total votes on answers Could be added to the API? There are no threats to ...
0
votes
1answer
28 views

Add revision diffs to API?

This may be a bit of a stretch, but I was wondering if it could be possible for the API to return the diff between two revisions? Or the next best option, to have the API return the markdown value of ...
1
vote
0answers
72 views

Can we have the usage pages linked to the side bar?

The usage page for the API used in the blog is a very good reference of the current API methods, and slightly better then the current documentation link in the FAQ. Would it at all be possible to ...
1
vote
0answers
45 views

Any plans on push services? [duplicate]

Possible Duplicate: Can we have some sort of notification system? Are there any plans to support push services via websockets or anything similar so that apps can get new data pushed to ...
4
votes
1answer
90 views

Does there exist a method call to get unaccepted answers?

I noticed there was the method /questions/unanswered which returns questions with no upvoted answers but I'm more interested in something like /questions/unaccepted which returns all questions that ...
5
votes
2answers
253 views

Why does the API lack any POST methods?

Why aren't any POST methods available? Being able to post new questions and answers would be very interesting.
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 ...
14
votes
2answers
407 views

Why does the API lack (proper) HTTP cache control headers?

I've just read Kevins answer to Do I need API key to use StackAuth API? and been quite surprised that the API doesn't seem to facilitate proper HTTP caching already: You really shouldn't be ...
3
votes
1answer
105 views

AND searching for tags?

I am using the search api to search for questions that are tagged with "tags" and not with "tags". However I have noticed that searching for tags is an OR search. The questions search for tags is an ...
5
votes
1answer
127 views

Will URLs always follow this pattern?

Many of the API endpoints return urls, such as /questions/{id} (which returns urls for question_timeline_url, question_comments_url, etc). However, the URL returned is a relative URL, like ...
1
vote
3answers
155 views

What is the best way to provide support for an unknowable number of StackExchange sites?

I just wrote an app for Chrome extensions and received a request to make it cross-StackExchange compatible. If there's eventually going to be more sites than just the few listed and I don't really ...
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
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 ...
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 ...