Question related to StackExchange API usage

learn more… | top users | synonyms (1)

1
vote
2answers
29 views

stackover flow query

when using the stack overflow data explorer, how can I select questions with 3 or more answers?
-2
votes
0answers
8 views

I'm not cleared with stackexchange authentication api.Can someone explain bit clear?

I've used api's which provides some result in JSON format, if i pass some parameters to that api. example : www.somewebsite.php?user=abc&pass=1234 After run my API,I got login success or failure ...
2
votes
1answer
242 views

PHP Curl request to Stackoverflow API

I'm trying to use $curl in PHP to access the stackoverflow api to get the basic info back. I have review the docs and I've tried about a hundred combinations of header and curl_setopt commands and ...
0
votes
1answer
1k views

Cannot parse gzip encoded response with RestTemplate from Spring-Web

After I modified Consuming a RESTful Web Service example to call get users by id from api.stackexchange.com I get JsonParseException: com.fasterxml.jackson.core.JsonParseException: Illegal character (...
4
votes
1answer
53 views

How to get data from stack exchange site

I need to get data for my research at university from specific stack exchange site. I am using python and I need to extract title, text, answers and tags from every single question at this specific ...
0
votes
1answer
19 views

Determine users that have contributed the most to a range of tags, via the Stack Exchange API

I'm looking for a method to get the most contribution users in a range of tags in Stack Overflow (the most people who answer questions in a range of tags) in the stack exchange API, I have looked in ...
0
votes
0answers
35 views

Geting access token from stackoverflow api in rails

i am getting the access token from stack overflow api by POST (application/x-www-form-urlencoded) request as curl --data "client_id=8020&client_secret=ROsccJrTR7k5AkiJelWg((&code=...
1
vote
1answer
37 views

Stack Overflow timeline (feeds) of a user

How to get the Stack Overflow timeline (feeds) of a user? What are the steps to follow, if a user wants to display his or others Stack Overflow timeline/feeds in his website.
-1
votes
1answer
35 views

How can I get access to StackOverflow data?

I need to create reports around tag usage and unanswered posts. What're the different mechanisms available to access this data?
0
votes
0answers
10 views

How to get stackoverflow information with push notification?

I want to make stackoverflow push notification software from scratch to learning. I want unread box information. If someone answer a question, push the notification to questioner. I got ...
0
votes
0answers
32 views

Login to stackoverflow.com via curl

I'm trying to login to my stackoverflow.com account programatically. I've tried to do a curl like the following but it's asking for content length: $ curl -X POST --user [email protected]:abc https://...
1
vote
1answer
42 views

Can't use required library when an @grant value is set

There are a few questions relating to this, but the general 'solution' of using unsafeWindow isn't working for me. I'm trying to use the Stack Exchange Javascript SDK. This works: // ==UserScript== ...
0
votes
0answers
10 views

Authentication via the stackoverflow-java-sdk

Is it possible to authenticate our application via the stackoverflow-java-sdk? I have looked into the source code, but I could not find any. May be I am missing something. http://stackapps.com/...
0
votes
0answers
14 views

Response code 400 while making api call to stack exchange api

I using the below code to get the list of top tags of an authenticated user. However, I am getting a response code of 400 as a response. I am using stack exchange api version 2.2. I am able to ...
1
vote
1answer
26 views

Django-allauth with StackExchange: How to set it?

After successfully implemented Reddit login via Django-allauth, I'm trying to do the same with StackExchange. I've followed the doc for this. 1) In my Django project: my settings: ... ...
0
votes
0answers
49 views

“We are currently offline for maintenance” message when authenticating to stackexchange API

I'm creating an application that connects to the Stack Exchange API for write access. I'm implementing server side explicit authentication. However, when I send the acquired code to the specified end ...
3
votes
1answer
347 views

Py-StackExchange filter by tag

I'm using Py-StackExchange to get a list of recent questions from Stack Overflow. I know there is a way to get just a constant list of questions: import stackexchange so = stackexchange.Site(...
0
votes
1answer
57 views

Stack Exchange API & User Profile

Is it possible to get user profile information such as GitHub, Twitter account names thru the API? This information is visible in the user profile page, I'd like to know if there is a way to access ...
0
votes
1answer
84 views

jQuery $.ajax - how do I build the get request for this API?

I am trying to make a call into this API and return a json object. I want to return an array of the top answerers for the tag that I pass in. I'm having trouble building the string in my $.ajax call....
1
vote
1answer
37 views

How to restrict fields returned by stackexchange api, and turn off paging?

I'd like to have a list of just the current titles for all questions in one of the smaller (less than 10,000 questions) stackexchange site. I tried the interactive utility here: https://api....
0
votes
1answer
16 views

Using the StackExchange API to search on keywords

I'm thinking about writing an app that lets you download data from StackOverflow. There is one caveat: I want to download data that contains specified keywords. For example: if you search for "How do ...
1
vote
1answer
47 views

Stackexchange API encoding

I am writing following decorator for Stackexchange API: class StackOverflowHandler(tornado.web.RequestHandler): def get(self, look_up_pattern): url = "https://api....
1
vote
1answer
32 views

npm API request to Stack Overflow API returning weird response

I am using the following code to call the Stack Overflow API: var request = require('request'); var url = 'http://api.stackexchange.com/2.2/search?order=desc&sort=activity&tagged=node.js&...
0
votes
0answers
22 views

URL and parameter values to get user data from stackoverlow

in stackoverflow(stackexchange api, https://api.stackexchange.com/docs/authentication) it clearly mentioned about how to send user to the login page and get access token from it, but the details for ...
1
vote
1answer
328 views

How to get questions using StackOverflow API V 2.2 in PHP

I am working on a project and want to get questions from stack overflow using Stack Overflow API. I searched the way how to achieve the same here: how to get a list of questions from stackoverflow ...
4
votes
1answer
832 views

Getting null as response from Stack Overflow API with PHP

I use this code for PHP to get Stack Overflow reputation. $feed = json_decode(file_get_contents("http://api.stackexchange.com/2.1/users/22656?order=desc&sort=reputation&site=stackoverflow&...
1
vote
1answer
87 views

When fetching questions using Stack Overflow API, the output is garbled

I want to get some questions from Stack Overflow API. I have done the following things: All the 3 steps executed successfully. Requested user to approve the app: https://stackexchange.com/oauth/...
1
vote
1answer
105 views

How to get StackExchange user's email ID through the API

Is there any way I can retrieve the user's registered email ID through the stack exchange API?
-6
votes
1answer
115 views

List of all tags used in stackoverflow

I am building a website, which categorizes IT problems. How can I get the content of all tags used on stackoverflow? I need to use the same tagging feature with the same content, but separately. ...
2
votes
2answers
369 views

error while trying to get access token from stackexchange API 2.0 if user not logged in

Here's my problem: I'm trying to get the current users profile url on stackoverflow using the stackexchange 2.0 API. If the user is logged in then everything works fine, the OAuth flow gives me the ...
-1
votes
1answer
147 views

Retrofit : Retrieved list size is always zero though my pojo classes are right

Having a bit of problem with retrofit. I'm trying to get the data's from the below json : { "items": [ { "badge_counts": { "bronze": 127, "silver": 66, "gold": 16 ...
0
votes
1answer
106 views

How to use oauth2 to access StackExchange API?

I'm following the instructions mentioned here: https://api.stackexchange.com/docs/authentication But since there is no code provided, I'm not able to understand the flow correctly. I've been trying ...
-1
votes
1answer
53 views

Parsing Request as json with stackexchange API

I am struggling with some issue related with http, java and the stackexchange API consider the following url as string: private static final String URLSTRING_2 = "http://freegeoip.net/json/"; if I ...
0
votes
0answers
40 views

How to use oauth2 with StackOverflow API?

This is what I've so far. How should I proceed further? import oauth2 as oauth url = 'https://www.stackexchange.com' request_token_url = '%s/oauth/' % url # authorize_url = '%s/oauth/authorize/' % ...
0
votes
0answers
26 views

Listing all users having a specific tag using StackExchange API

As the title says, I want to retrieve all the users with a specific tag. I went through the API documentation, querying the Data.exchange.com and also the question Listing all users associated with a ...
0
votes
0answers
14 views

Best way to get additional user data for each of the stackexchange sites a user belongs to

I'm trying to get all of the stackexchange sites that "me" has an account at along with the user's display name, user_id, profile url and photo url. me/associated [ https://api.stackexchange.com/...
0
votes
0answers
9 views

Where can I revoke an application's access to my stackexchange account

I gave a site permission to do a "social signin" with my stackexchange info and now I'd like to revoke that access. I have searched, but I can't find where I can do that.
1
vote
2answers
440 views

NSURLSession dataTaskWithRequest completionHandler fetching NSZeroData?

I am trying to download some XML from the Stack Exchange API. However, I'm not getting any results back. The URL brings up the XML when accessed in the browser, but I can't seem to get that in the ...
10
votes
3answers
384 views

Consuming stack exchange API

I have tried to upvote a stackoverflow question with the stack exchange api and failed. I have tried a lot but I didn't get it to work. URL : http://api.stackexchange.com/2.2/questions/35007869/...
1
vote
1answer
829 views

Stackoverflow reputation

I am trying to display the stackoverflow reputation of an user in my project. I have the user email. So with user email as input can i get the user's stackoverflow reputation? Now i tried using ...
1
vote
0answers
22 views

Error When Trying to Get Upvoted Property From StackExchange API

I'm trying to get the upvoted and body properties on each question when I get it from the Stack Exchange API. This is the URL I am using: http://api.stackexchange.com/2.2/questions?page=1&...
0
votes
0answers
24 views

Get garbage characters by using kevinsawicki-httprequest to request statckexchange api

Here is my code snippet: import com.github.kevinsawicki.http.HttpRequest; /** * Created by alex on 2016/1/19. */ public class Test { public static void main(String[] args){ String url =...
0
votes
1answer
42 views

Listing all users associated with a specific tag using Stackexchange API

I am looking for an API or combination of StackExchange APIs to list all the users associated with a specific tag in Stack Overflow. I went through the API documentation but I couldn't locate one. ...
0
votes
1answer
42 views

gzdecode and file_get_contents in php vs curl

$url = 'https://api.stackexchange.com/2.2/answers/'.$id.'?order=desc&sort=activity&site=stackoverflow&filter=!-*f(6t*ZdXeu&key=MY_KEY'; gzdecode(file_get_contents ($url)) ; this ...
6
votes
2answers
674 views

Unparseable StackExchange API response

I've written a small program to analyze my profile data from the StackExchange API, but the api returns unparse-/unreadable data to me. Data received: (self downloaded using c#) \u001f�\b\0\0\0\0\...
0
votes
1answer
19 views

stack api (java) to connect with my application

I am new to stack API. I want to integrate my application with stack such that i can search something from my application and get response from stack overflow. Please guide me if it is possible to do ...
0
votes
1answer
38 views

Stack Exchange API : get post list from user

I'm currently playing with the Stack Exchange API. My goal is to display a list of 5 last posts from a specific user. I thought it would be easy, but well, I can't make it work... Here's my try (...
1
vote
1answer
31 views

Empty result when parsing a JSON

This is the kind of question I hate asking because I know the answer must be super easy, but I can't seem to figure it out. I am trying to parse the JSON response from the Stack Exchange API but I am ...
0
votes
1answer
37 views

How to proper implement stackexchange api?

I have implemented fetching the latest questions with php: https://api.stackexchange.com/2.2/questions?order=desc&sort=activity&tagged=wordpress&site=stackoverflow&filter=withbody ...
1
vote
0answers
45 views

OPTION Preflight to stackexchange api responds with BAD REQUEST

I've been banging my head against this all day. When trying to post to stackexchange from my webapp, I keep getting a 400 BAD REQUEST on my request. I've been using fiddler to try and spoof requests ...