3
votes
1answer
62 views

Is there going to be an API for the Careers site?

Is there going to be an API for access to the careers site? I could understand that it would be different to the rest of the Stack Exchange APIs, but I could see that it could be useful for use cases ...
3
votes
1answer
221 views

StackPrinter - This IP has exceeded the request-per-day limit.

I'm having this problem. This IP has exceeded the request-per-day limit I hardly believe that with StackPrinter, I'm depleting 10.000 requests per-day, per-site :). Could you please verify? EDIT: ...
3
votes
1answer
101 views

Area51 does not show up in the associated accounts query

Is this on purpose and if yes why?
3
votes
3answers
703 views

API usage triggering 503 (Too Many Requests)

Update: I generally try to back any claims of bugs and shortcomings with evidence. I have prepared a test page which you, dear Stack Overflow staff and my fellow developers, can use to ascertain ...
3
votes
3answers
377 views

How to format an url-friendly slug for question urls

I would like to construct a slug starting from the question title. It would be useful to apps that want to show the original link to the question in a human readable way. On StackPrinter i have this ...
3
votes
3answers
444 views

BOUNTY: Build an app with Soapi.JS and gain praise and adulation. And some rep.

Bounty Contest: Build anything using the Soapi.JS JavaScript wrapper and either post the code or a link to a live demo. When the question gets old enough (7 days I think) I will click 'start a ...
3
votes
2answers
176 views

What is the correct way to get the stackoverflow.com URL for an answer via the API?

A while ago I made a little "Recently answered on Stackoverflow" sidebar widget for my homepage. Currently this works by filtering answers out of the user feed however I thought I'd update it to make ...
3
votes
1answer
79 views

Can I register for an API key for an “alpha” site?

I appreciate that you'll want to limit users of the no-key API, however I fear that on a daily basis I might exceed the 300 limit in testing alone. I certainly don't want to hammer the API, but my ...
2
votes
1answer
24 views

Can I get more results/options from /users/{ids}/top-answer-tags?

/users/{ids}/top-answer-tags returns the top 30 tags for a given user. It's also the only endpoint that returns the user's tag scores along with the rest of the tag info. I'd like to use this data ...
2
votes
0answers
70 views

BrickJax: Brick Image Replacement for Bricks.StackExchange.com

Screenshot About We've put together a script that we're hoping to get added to LEGO Answers that will allow users to easily insert images of Bricks, with or without links, and also links to ...
2
votes
1answer
82 views

Authorized requests: auth parameter seems broken

I'm having problem with authorized requests. Every requests with a valid auth token get: error: { code: 4009 message: "The 'auth' query parameter is not a valid auth token." } Renewing the ...
2
votes
1answer
71 views

is there an api to access a list of tags on super user?

As above, is there an api function to access a list of tags on super user?
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 ...
2
votes
1answer
67 views

Suddenly, some entries on /questions route are missing display_name

An odd bug has developed this morning. At the moment, api.stackoverflow.com/1.0/questions is returning a question of the format... ... }, { "tags": [ "jsf-2.0" ], ...
2
votes
1answer
90 views

API selectively ignores jsonp parameter - havok ensues

UPDATE: this is happening on all routes now and seems to be getting worse. Whatever it is just started this morning. compare url to json response GET ...
2
votes
1answer
85 views

What constitutes 'active participation' in the private API beta?

In trying to understand some continued weirdness regarding badge/reputation rewarding in the context of private API participation I failed to find the explanation what exactly constitutes 'active ...
2
votes
0answers
204 views

ActionStack - An ActionScript Wrapper for the API

Screenshot / Code Snippet Here is a simple example that fetches stats on StackOverflow: import com.actionstack.ActionStack; import com.actionstack.QueryCompleteEvent; var actionStack:ActionStack ...
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
2
votes
1answer
67 views

How to filter getAnswersForUser by tag?

I'm using Stackexchange java client lib I wanted to get a little more statistics but the following snippet returns only 30 answers. Do I need to to register for an API key, or just use ...
2
votes
1answer
51 views

Add information to badges/{id} method.

Currently, there is no practical way to retrieve badge information given its ID. I would like to see title and description added at the very least. Current method for retrieving the data: call the ...
2
votes
0answers
175 views

Tangoverflow - StackApps API using D with Tango

Screenshot / Code Snippet Not yet available. About So far, in commit #2, can successfully parse the statistics API into an object. I'll update more as I get more of the API done (but for now, I ...
1
vote
1answer
96 views

How to login programmatically using Android Code?

I think my questions is not a duplicate of this one How to login programmatically I have read the authentication document but still i am not able to get what should I do for if I want to perform ...
1
vote
1answer
53 views

Software for Javascript?

Do I need any special kind of software to view the responses I get after requesting something? Like with Klout for example, I can get all the code returned as I need it, I just don't know where to put ...
1
vote
0answers
20 views

Are “api-key” and “app-key” the same thing?

When tagging my last couple of questions about registering for a key I noticed there are two similar-looking tags: api-key - 17 uses and a tag wiki app-key - 8 uses, no tag wiki Do they ...
1
vote
2answers
28 views

How to get the site name from document to pass to API?

Most APIs take a parameter site which must be set to the name of the site your queries are about. For meta.travel or travel. But of course sites have various names, for example ...
1
vote
1answer
42 views

StackExchange API not realtime?

I was testing the inbox/unread API but noticed that there is a big delay between one gets a message, and this message gets included in the API response. Like one minute or more. Is this API not ...
1
vote
1answer
25 views

Site_Type returns “main_site” for meta.stackoverflow.com

For Meta Stack Overflow, the 2.0/sites endpoint returns "main_site" rather than "meta_site". All other site_type for other stackexchange sites return correctly. URL: ...
1
vote
1answer
54 views

Pagination of users ordered by reputation

I know I can retrieve a page of users ordered by reputation using these apis: http://api.stackoverflow.com/1.1/users/?sort=reputation&order=desc&page=1 ...
1
vote
1answer
67 views

Implicit OAuth flow is not working when the user is not logged in.

Here is the URL I am trying to use: https://stackexchange.com/oauth/dialog?client_id=120&scope=read_inbox,no_expiry&redirect_uri=https://stackexchange.com/oauth/login_success This works ...
1
vote
1answer
327 views

API Implicit Authentication with Python

I am working on an desktop inbox notifier for StackOverflow, using the API with Python. The script I am working on first logs the user in on StackExchange, and then requests authorisation for the ...
1
vote
1answer
39 views

StackAuth 1.1 API reports a site without a site_name

Calling the StackAuth 1.1 API associated method for a particular user returns one site with no site_name property (the one for which the user_id is 349). I cannot find a matching account in ...
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 ...
1
vote
1answer
56 views

last_activity_date meaning on /questions route

I would like to add a cache layer to my app for questions, answers and comments. The last_activity_date parameter on /questions route seems a valid candidate (probably the only way available) The help ...
1
vote
3answers
105 views

StackAuth returning 404?

http://stackauth.com/1.0/sites http://stackauth.com/1.0/help Both of these are currently returning 404 Not Found. What's up with that?
1
vote
1answer
95 views

new throttle does not differentiate between api requests and requests made from viewing the site

Update: I am unable to reproduce the case of interactive browsing affecting app quota. And will concede that the failures that prompted this post were likely far edge cases. The remaining issue of a ...
1
vote
1answer
45 views

redundant data in users

this is an example of truly redundant data. the paths are documented. they don't need to be included in the results. "user_questions_url": "/users/22656/questions", "user_answers_url": ...
1
vote
1answer
58 views

Problem getting a users answers within a date range

This issue is similar to http://stackapps.com/questions/768/problem-getting-a-users-questions-within-a-date-range. Only this time I'm calling a different api and getting unexpected results. I'm ...
1
vote
1answer
70 views

Shouldn't there be a separate call for featured questions?

I find it rather peculiar that you can sort questions by featured. My arguments: What does order mean in this case? It could mean the bounty amount (e.g. using desc would return the questions with ...
1
vote
2answers
81 views

Possible problem calling users/?filter method searching username with tilde

I'm testing curious usernames and I am searching their user_id by: http://api.stackoverflow.com/0.8/users/?filter=username_filter I'm trying to get information about this particular user: ...
1
vote
2answers
77 views

Stats not showing the same values as the Site

I get less values in the api method that in the site, is this posible? Example: form the API I get that SO has 709980 questions from site 701005
1
vote
1answer
50 views

Is the question_id monotonically increasing?

Just wondering: Does the question_id monotonically increase for every new question? Is the question_id unique globally for a deployed app or is it unique in some sub-domain? Is there any relation ...
1
vote
1answer
64 views

Featured questions API

Can we get an API to get the list of featured questions (/questions/featured)?
1
vote
1answer
117 views

questions/{id} API method: pagesize parameter?

I'm trying to get the lightest data about a given question id because i just need the question's title. With this call: http://api.stackoverflow.com/0.8/questions/1598715?pagesize=1 i get ...
0
votes
0answers
27 views

Search links (Stack, Google, Symbolhound) next to the search box, for tab opening

Screenshot About Adds three links next to the search box. Allows to open the regular Stackoverflow search in a new tab, or search using Google, or Symbolhound. Proved useful to find ...
0
votes
1answer
16 views

ChatterBox configuration option is confusingly worded

ChatterBox - user script that adds inbox integration to Stack Exchange Chat! I'm confused over the option: Mark items as unread when you view them: Why would I want to mark items as unread when ...
0
votes
0answers
53 views

How to login programmatically

I'm building an app for personal use. The app simply screen-scrapes the StackExchange homepage and checks whether I am currently logged in to StackExchange. This works fine. However, if the app ...
0
votes
1answer
34 views

Mismatch between user_id as reported in StackAuth 1.1 (invalid) and 1.0 (valid)

For the association id 1de2e2b0-2fb6-4db6-b90d-d0244ed5d13a, the StackAuth 1.1 call returns an invalid user_id of 73203 for Server Fault whereas the StackAuth 1.0 call returns the correct user_id of ...
0
votes
1answer
92 views

Comments are returning markdown.

Look at the output of the following: http://api.askubuntu.com/1.0/questions/12218?comments=true Output: { "comment_id": 12713, "creation_date": 1289269467, "owner": { ...
0
votes
1answer
82 views

Add careers link and info to StackAuth

It might be nice to have access to a user's linked careers information via StackAuth if at all possible. One use I had in mind was integration into a sidebar widget.
0
votes
1answer
83 views

questions response missing fields

conclusion never mind. the fields are marked as optional in the spec. it was late. sue me. the q is left for reference What is coming out: { "tags": [ "cakephp", "fileupload", ...

15 30 50 per page
1 4 5 6 7 8