288 questions
5
votes
2
answers
3k
views
How to get the body of an answer using the Stack Exchange API?
I am using StackAPI to get the most voted questions and the most voted answers to those questions:-
from stackapi import StackAPI
SITE = StackAPI('stackoverflow')
SITE.max_pages=1
SITE.page_size=10
...
0
votes
1
answer
274
views
How can I fetch the total amount of items?
I'd like to call for a stack exchange query to get the number of questions that were asked in a certain time range about a certain tag.
How can I do it? according to api's documentation it said that:
...
2
votes
0
answers
147
views
Order StackExchange API reponse by date and specify minimum # votes
Is there a way that I can specify a minimum score when requesting comments from the StackExchange API while still ordering by the creation date? I'm currently requesting comments ordered by date and ...
3
votes
2
answers
589
views
StackExchange API: Could not parse client_id
I'm trying to connect to the StackExchange API in R.
When I try:
library(httr)
end <- oauth_endpoint(authorize = "https://stackoverflow.com/oauth",
access = "https://...
1
vote
1
answer
95
views
How to get the Timestamp of awarded time for badges?
Which is the way to take the time of a badge awarded to a user?
I tried the notification as it is recommended here but I get:
method not available
1
vote
1
answer
97
views
How to get all questions related to a tag, using the stackr library?
I would like to retrieve all question asked for a specific tag. Specifically for every question: all tags, date posted, body, user who posted the question, and votes.
I tried this:
library(stackr)
...
-2
votes
1
answer
84
views
How to retrieve access_token from client-side OAuth 2.0 stack exchange api flow using Python?
I am working on my project for StackOverflow, using the API with Python. However, I need to get the [access_token] from the URL as is described in https://api.stackexchange.com/docs/authentication.
0
votes
0
answers
121
views
How to get the user ranking data of Stack Exchange using the API?
I want to get the user ranking data on the "Users" page of Stack Exchange (see the following figure), but do not find relevant APIs implementing such goals.
enter image description here
1
vote
2
answers
103
views
How to get questions' text using the stackr library for the API?
Using stackr it is possible, with the following command, to list the questions from a specific user.
library(devtools)
devtools::install_github("dgrtwo/stackr")
library(stackr)
textques <- ...
0
votes
1
answer
192
views
stackexcange api get answer and comments and related qus. in single request?
stackexcange api get question answer and comments and related questions in single request ?
How to get Question Answers and Comments and Related questions in single query Possible ?
document : https:...
0
votes
1
answer
324
views
Stack Exchange API
After get the answer with API, we get an object without a body.
{
"items": [
{
"owner": {
"reputation": 31,
"user_id": 7256724,
"user_type": "registered",
"...
1
vote
1
answer
752
views
Node.js Request GET returning raw data instead of JSON [duplicate]
I have a particularly interesting issue, So I am trying to use Stackoverflow Search/Advanced API to query stackoverflow to get questions. I have tried it using PostMan and its returning JSON but in my ...
2
votes
2
answers
2k
views
Stackexchange API: fetch answers to a specific stack post
I am using the stackAPI Python wrapper to interface with the stackexchange api. I am trying to fetch the top most popular questions above a vote count threshold; and for each of those questions the ...
4
votes
2
answers
271
views
Get GitHub account using StackExchange API
I am trying to use the StackExchange API to retrieve the GitHub link a user has set in his profile.
I am talking about this one:
However I'm not finding methods to retrieve that data. I'm also not ...
3
votes
1
answer
277
views
How do I retrieve the actual date from the StackOverflow API *creation_date* field?
How do I retrieve the actual date from the StackOverflow API creation_date field?
The date depicted via their API is an integer:
"creation_date": 1288523078
However, I would like to convert the ...
2
votes
1
answer
38
views
SE Data Explorer table for link visits
I would like to use the API or SEDE to discover which of my shared links (created by the "share" button as appears below each question/answer) have been visited by the most unique IP ...
7
votes
1
answer
10k
views
NodeJs: Getting paginated get requests
When requesting Q&As from stackexchange API, the JSON response has a has_more (Boolean) argument and when it is true that means there are more requests possible with
http://api.stackexchange.com/...
0
votes
1
answer
155
views
Calling StackAPI endpoints
Hi I am writing a small task to learn ,querying stackoverflow api
I want to achieve below
● Number of questions asked on that date
● Total number of views across all questions
● Distinct (i.e. ...
-1
votes
1
answer
492
views
Getting Information from Stack Overflow API using Java
Is there a Java wrapper for the current version of Stack Overflow? I have been looking at here and here, but they seem to be outdated for current API version. I keep getting connection refused when ...
3
votes
1
answer
173
views
What does "!)V)MSZJUgX_" mean in Stack API filter?
I was looking into Stack API doc and found the following API call.
https://api.stackexchange.com/docs/comments#order=desc&min=1&sort=votes&filter=!)V)MSZJUgX_&site=stackoverflow&...
0
votes
1
answer
529
views
Python unicodeDecodeError on parsing a JSON url
I am using python 3.4 and trying to parse what seems like valid JSON output from a url. ex:
http://api.stackexchange.com/2.2/questions?order=desc&sort=activity&site=stackoverflow
This is ...
1
vote
1
answer
244
views
How to cross check a technical skill (tag) with stackexchange api?
I'm having some custom keywords/tags (technical keywords which are dynamically generated by a Machine Learning module). Example: MVC, aws, etc...
So what I need is to check whether that particular tag ...
2
votes
0
answers
57
views
How can I not authenticate everytime in StackExchange API calls using JS client?
I am using this code from the StackExchange App Documentation to get the user information from StackOverflow.
// For simplicity, we're using jQuery for some things
// However, the library has no ...
0
votes
1
answer
114
views
How to use the request key while making http request to stackexchange api Angularjs
I have a request key but i do not know how to use it while making an http request. can someone give me an example. here is my code for the moment :
function getQuestionLinks(tag) {
return $q(...
2
votes
2
answers
2k
views
Stack Overflow query to select questions with 3 or more answers
When using the stack overflow data explorer, how can I select questions with 3 or more answers?