Tag Info

Hot answers tagged

88

I emailed Jeff Atwood last night a one line email. "You should make a StackOverflow API using OData." Then I realized that, as Linus says, Talk is Cheap, Show me the Code. So I created an initial prototype of a StackOverflow API using OData on an Airplane. I allocated the whole 12 hour flight. Unfortunately it took 30 minutes so I watched movies the rest of ...


26

We have scripts that check for unusual / abusive access patterns, and a daily "top n" traffic summary report of inordinate and anomalous usage. We regularly block (IP range ban) unknown scrapers that do not identify themselves and/or have poor behavior patterns. These bans are permanent until someone emails us to make a case that they should be removed. ...


24

I don't think this is unethical or problematic. According to the original feature request, there are essentially two reasons why viewing vote counts is a privilege for 1k+ users: Displaying the vote counts requires a database hit, given how the vote data is stored. This is not only a performance issue but puts additional stress on the servers. Given how ...


20

To me, an embeddable Stack Overflow "vote" widget would make no sense at all. Facebook's or Google Plus's "Like" functionalities are fundamentally different from voting on Stack Overflow, they serve completely different purposes. An external voting widget would defeat the core purpose of SO's voting system: Voting is used for competition between multiple ...


17

Jon, your list is very inclusive and would make it possible to extend SO with essentially any functionality you can imagine. Personally, I could do with a far more modest API. In fact, the most important feature to me would be a way to get a user's rep based on username, email or OpenID. For extra credit, they could throw in earned badges too, but that's ...


15

Showing the vote count is supposedly too expensive to do casually. (See also, Jeff's answer here.) It's true that you can use custom SQL queries to get the same information (for now), and presumably that would be even more expensive. But, far fewer people are liable to attempt it. Hypothetical analogy: Operation "Cost" Typical Attempts Total ...


13

Okay, just an update - I think I found the answer to my question. The StackOverflow add-on for FireFox appears to be the culprit. I've uninstalled it and am awaiting confirmation from I.T. that the problem has been rectified... will keep you all posted. Edit: I.T. has just confirmed that bandwidth usage has dropped by about 90% since I uninstalled this ...


12

I've created a native application for Stack Overflow for anyone who is interested. Try the iTunes link or if you want to know more about how I created it you can check out the project page. It is limited because I'm using the CC data dump but it is a starting point.


12

I don't believe this would really provide a good way of learning. To my mind, books are the best way of learning systematically. (I'm biased as an author, admittedly.) While much or indeed all of the information presented in a book is usually available online, books provide precisely the systematic approach you mention. They are designed so that you can ...


10

There is a read-only API available. You can read about the API, develop and submit your own Apps over on Stack Apps which is linked in the footer of each site. Here is a link to the API Documentaion


10

No. Hats are only going to last until January 4, there'd be absolutely no point in asking the developers to update the API for something that's supposed to be silly, fun and ephemeral. There are 5000+ feature requests and 2,037 bug reports that deserve more attention than this.


8

This sounds like a good fit for StackApps. That community is explicitly for Stack Exchange-related apps and would doubtless welcome an app with such a lofty goal as predicting the best answer to questions. Here's a link to the extension on Stack Apps for those interested in giving it a spin.


8

SEDE data is updated monthly. http://data.stackexchange.com/faq The creative commons data dumps are updated bi-monthly (every 2 months): http://blog.stackoverflow.com/category/cc-wiki-dump/ If you need more real time data, use the API: http://stackapps.com


8

First, I have already created such an extension: “View Vote totals” without 1000 rep. on Stack apps Before I published it, I also encountered this question. The following arguments persuaded me (ordered by weight): The Stack Exchange API is created for this purpose. We're granted an API key, hence permissions to use the data. If one user invests time in ...


8

Disclaimer: This is an advert, but I think people will find it useful Six to Eight (Stack Apps entry) is a native iOS client for the entire Stack Exchange network. It's free, and uses the API to be up to second synchronised with your Stack Exchange sites and accounts.


8

I would generally advocate against any API that writes information into SO. Gather info, sure. Notify me when there's been a (comment, answer, up/down vote) to my question, absolutely. With some creative scripting, you might be able to set up a "submit to SO" function yourself.


7

Sometime this year. Ideally sooner rather than later. It is a high priority, but I have a lot on my mind grapes. Update: now in private beta, and will remain so for 30-60 days so we make sure we get it right for V1. We don't want to go public until we feel confident it's right. Email team@stackoverflow.com with your intended use case if you want to ...


7

Why bother with the API? To quote myself, previously on MSO: That's just the rep amount you need to be able to see it easily. IIRC, you can see the up/down-vote breakdown for any question just by going to /posts/question-id/timeline. For instance, you can see the breakdown for this question itself at ...


7

OData has nothing to do with the API (at http://stackapps.com); it's a service of the Stack Exchange Data Explorer. And yes, all current and future Stack Exchange sites will be featured in the SEDE as they are launched. We might wait a few months to build up enough data (stated another way: long enough to prove they can survive in the wild as public beta ...


6

To answer your first question, the API does not currently support writing actions. However, the API roadmap indicates that these features are currently being developed. I've quoted and summarized the relevant excerpts below: Version 2.0 For version 2.0, the biggest new feature will be user authentication. Currently leaning towards OAuth2.0, ...


6

Yes, there's an API. Here's a simple example that will display the title of the latest question you answered: <script> var url = "http://api.stackoverflow.com/1.1/users/231716/answers?jsonp=?" jQuery.getJSON(url, function(data) { alert("Brian's latest answer was to \"" + data.answers[0].title + "\"."); }); </script>


6

It is very, very likely that the first iteration of the API will be read-only for all the reasons others have listed. Not everyone on the SO team agrees on this point, but I think we need to get a good V1 out there for reading, before we even begin to attack the much harder writing problem.


6

The public API beta covers this request, and is available now: http://blog.stackoverflow.com/2010/05/stack-exchange-api-public-beta-starts/ http://stackapps.com/ Use the API to build a mobile app or site to your taste!


6

There have been several attempts at providing such access to the API from R : overflowr is "an R package to pull data from the StackExchange API", but it hadn't been updated since 2010 : https://code.google.com/p/overflowr/source/list RStackExchange is also an "R based StackExchange client", but hadn't been updated for 2 years, too : ...


6

This is true. It should be fixed. The degree of intensity with which you push your point may be a bit excessive. While we're at it, the description for /users/{ids}/questions/featured /me/questions/featured has an erroneous comma. Arguably, the description for /access-tokens/{accessTokens} should have a period instead of a comma (going by the format of ...


6

From the API 1.1 docs: The V1.x family of APIs is obsolete, having been replaced by the V2.x family. New applications should use V2.1, and existing applications should migrate to V2.1 as well. Existing API V1.x endpoints are still supported, but we are no longer creating new ones for new Stack Exchange sites. (emphasis mine) Presumably, ...


5

Flair is what you are looking for. Like this one: As @Sha Wiz Dow Ard suggested on his comment: Global flair is also available. Like this one: Related blog: Flair: Now Even Flairier


5

This would be difficult/impossible seeing the usernames are not unique. See: Josh Josh Josh Josh josh


5

Opening up the Beta badge to be attainable in the future would make it less exclusive (full disclosure: I don't have it), which some users may object to. However, I think the following should outweigh any user objections: Promoting participation in any current or future beta testing Keeping the badge system simpler (use the same badge vs. adding a new ...


5

I find the desire to "do something" with the SO knowledge pool understandable - there are hundreds, if not thousands of invaluable gems in SO's pool of questions and answers. Gems not only because questions are well and correctly answered, but more importantly because dozens of people have looked over the information, corrected it, and added additional ...



Only top voted, non community-wiki answers of a minimum length are eligible