Question related to StackExchange API usage
Questions tagged [stackexchange-api]
275 questions
0
votes
1 answer
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 and legal.
if yes steps to do

javaLearner java
- 109
- 3
- 17
0
votes
1 answer
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 (client side, no auth) :
var apiURL =…

enguerranws
- 8,087
- 8
- 49
- 97
0
votes
0 answers
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 but I can't seem to get it to go through. Would…

Jonathan Pearl
- 711
- 8
- 21
0
votes
1 answer
How do I get the breakdown of a reputation score in the Reputation table of StackOverflow schema
How do I get the breakdown of a reputation score in the Reputation table of StackOverflow schema. For example, for user with UserId 1, his total score in the Post table is 6,036 but his reputation is over 30,000. How do I get the breakdown of the…

Ify
- 3
- 2
0
votes
2 answers
Android JSON null object reference error
I am using the StackExchange API in my application which returns a response like this :
{
"items":[
{
"tags":[
"android",
"gridview",
"android-fragments",
"android-activity"
…

Shivam Bhalla
- 1,879
- 5
- 35
- 63
0
votes
1 answer
Get a tag popularity over time from the stackexchange api?
How can I get a stackoverflow tag popularity history from the stackexchange api ?
Currently I get the total of tags over a specific period of time but I have to perform a new http call for each period of time.
I searched in the documentation but I…

Frederic Le Feurmou
- 1,676
- 1
- 17
- 22
0
votes
2 answers
StackExchange API authentication in Google Apps Script
I'm trying to use the V2.2 of StackExchange API in Google Apps Script.
The problem comes in the last step of the explicit OAuth 2.0 flow, when I try to send the POST request to obtain the access token. I receive a 404 error, but making the same…

Gerry
- 11
- 3
0
votes
1 answer
how to get json responses for all the tags used by stackexchange API
https://stackoverflow.com/tags/synonyms?page=1&tab=newest&filter=allgetbootstrap.com
This is returning me html page, so how can I convert the tags into json array which can be populated into my autocomplete search…
0
votes
1 answer
Simple StackEx API request fails in swift
I'm trying to pull down some XML from api.StackExchange. I've tried several things in Xcode playgrounds, but this is my latest attempt, in it's entirety:
import UIKit
import Foundation
var error: NSError?
var apiXML = NSString(
contentsOfURL:…

PopKernel
- 4,110
- 5
- 29
- 51
0
votes
1 answer
How to get Stack Overflow request key
I have a website that I need to integrate the Stack Overflow profile widget into using WordPress. So, please tell me the procedure and what are the things I require and how to follow.
Thanks in advance.

Sandeep Kumar
- 350
- 4
- 18
0
votes
1 answer
json_decode and StackExchange api
I'm trying to use the V2.2 of StackExchange api with PHP. I'm using the Symfony project with Kriswallsmith's buzz library.
The problem comes when I try to print the content of response of HTTP request and its encode. I have already read lots of…
user2359967
0
votes
1 answer
How to run script that gets stackoverflow inbox or achievements?
I'm trying to make a script that gets the number of various notifications from websites I use. Unread emails, you number of unread reddit/facebook messages, and I'd also like to get the number of stackoverflow notifications.
Unfortunately googling…

Charles Clayton
- 17,005
- 11
- 87
- 120
0
votes
1 answer
calling stackexchange api from server side in Meteor
I've tried to call stackexchange api from client side using the below code, It is working fine
HTTP.call("GET",questionsURL,{params:{site:"stackoverflow",key:key,function(e,res)
{
if(e)
{
…

user3716227
- 95
- 4
0
votes
1 answer
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 get back something like this JSON…

Bob Dylan
- 4,393
- 9
- 40
- 58
0
votes
1 answer
Stackoverflow quota for a day
I'm using stackoverflow in my meteor application,
I'm calling api directly from my code like below
HTTP.call("GET", urlString,{params:{site:"stackoverflow"}},function(error,result)
{
console.log(result.data);
…

user1934044
- 516
- 5
- 18