Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
1answer
281 views

Can I check with the Stackoverflow API which SO answerers are sleep-deprived?

In how-do-i-access-the-stackoverflow-api-from-mathematica I outlined how one could use the SO API to get Mathematica to make some interesting reputation graphs of top answerers. Could this API also be ...
9
votes
1answer
122 views

Stack Overflow API: get the user's “new mail!” notification?

When someone replies to your question (or for many other actions on the site) you get a little "new mail!" type icon in your "StackExchange" menu in the top left of the site. Checking out the API ...
9
votes
2answers
293 views

Watching for new Mathematica questions using Mathematica and the StackOverflow API

Unless Mr.Wizard is on vacation, it is pretty difficult to beat this phenomenon which seems to be gifted with omnipresence and omniscience. How can we outdo him using Mathematica and the StackOverflow ...
3
votes
0answers
60 views

Stackoverflow API - get “received” upvote count of a user [closed]

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
4answers
154 views

Trying to access stackoverflow api but getting parse error

In trying to use the stackoverflow api with ajax and jquery and I just can't get it to work. I know I have to use jsonp as the datatype and I keep reading different ways of doing the jsonp request but ...
2
votes
2answers
2k views

JSONP request returning error: “Uncaught SyntaxError: Unexpected token :”

So I'm trying to make a request to the StackOverflow api with the following jQuery code: $.ajax({ ...
2
votes
3answers
271 views

stackoverflow search api

I would like to use the search method of stackoverflow API to return the json structure of results based on a search keyword and then display those results (title, description and the url) in the ...
2
votes
1answer
281 views

How to download code using TortoiseHg (Mercurial)

I am trying to download the code theworldsworststackoverflowclone. At first I have tried with Tortoise SVN but later get to know that hg command is not supported. Now I downloaded Mrcurial and ...
2
votes
1answer
66 views

Stackover API gives different search results than web interface

I'm playing with the SO api, and noticed that the api call to search for lesscss gives total: 13 items with the api param tagged=lesscss http://api.stackoverflow.com/1.0/search?tagged=lesscss but ...
2
votes
1answer
239 views

Retrieve JSON with StackOverflow API

I want to retrieve information from my Stack Overflow profile as JSON using the API. So I use this link http:/api.stackoverflow.com/1.0/users/401025/. But when I make the request I get a file ...
2
votes
2answers
92 views

List of questions with tag with the Stack Overflow API

As some of you know, Stack Overflow now has an API, which now makes these types of questions valid programming questions. My question: I'm trying to write a small script to connect to the Stack ...
2
votes
2answers
319 views

JSON URL from StackExchange API returning jibberish?

I have a feeling I'm doing something wrong here, but I'm not quite sure if I'm missing a step, or am just having an encoding problem or something. Here's my code: URL url = new ...
1
vote
1answer
39 views

How can I automatically publish my questions and their responses to my blog?

I want to publish my questions and their responses asked here (on Stack Overflow) to my blog (or Linkedin, etc.) automatically. I host my blog on blogger.com. Is that possible?
1
vote
2answers
103 views

stackoverflow API for java

Do we have stackoverflow API for java.? if yes then from where i can get it?
0
votes
1answer
44 views

Questions method of the stackoverflow api returns only one page of questions

Trying to work with questions method of the stackoverflow api and it returns only one page of questions , how can I get the following pages? The java code I am using : URL stackoverflow = new ...
0
votes
2answers
339 views

WP7: Encoding.Default

I'm trying to get results from SO api in a WP7 app. I was able to get it working in a console app when I used the following code static void webClient_DownloadStringCompleted(object sender, ...
0
votes
1answer
65 views

Unable to download the sample code for theworldsworststackoverflowclone using Tortoise SVN

After going through stackapps, just tried downloading theworldsworststackoverflowclone with Tortoise SVN. When I try with Repo-Browser, I get the error: Unrecognized URL scheme for hg clone https ...
0
votes
1answer
85 views

file_get_contents() returns garbled data

I am trying to use the SO API (eg: http://api.stackoverflow.com/1.0/users/3) to get some data: <?php $data = file_get_contents('http://api.stackoverflow.com/1.0/users/3'); echo $data; ?> ...
0
votes
1answer
69 views

Namespace Orginization and Conventions

So I have a little bit of a problem. I working on a project in C# using The StackOveflow API. You can send it a request like so: http://stackoverflow.com/users/rep/126196/2010-01-01/2010-03-13 And ...
0
votes
1answer
70 views

SXAPI API Initialization error

I thought it is related To Meta but it is a programming question any way. I was trying to practice Stackoverflow Api as a test case, I have tried using SXAPI (stack Overflow Version 4). When I ...