Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
60 views

I am implementing a browser extension that needs to do OAuth with a provider (in fact, it is the StackExchange API). Currently the workflow is like the following: Extension calls identity....
ph3rin's user avatar
  • 4,948
0 votes
2 answers
78 views

I want to be able to compare the activity of StackOverflow users, but comparing two users with a year and ten years of experience by their reputation does not seem entirely indicative. That's why I ...
nik0x1's user avatar
  • 1,656
0 votes
0 answers
70 views

Here is a question I posted on a Stack Exchange website: https://math.stackexchange.com/questions/4404052/why-is-the-traveling-salesperson-problem-difficult Is it possible to see a complete history of ...
stats_noob's user avatar
  • 6,845
0 votes
1 answer
200 views

I am writing a demo app for myself to learn and suddenly I started getting 403 when doing api.stackexchange.com requests and I fail at EnsureSuccessStatusCode(). I'm doing them to populate my database ...
Lordzio's user avatar
0 votes
1 answer
50 views

The question type in Stack Exchange API has a field to identify if a question is bookmarked/favorited by the user, but I don't see the same field in the answer type. Does Stack Exchange API not ...
Gangula's user avatar
  • 7,800
0 votes
0 answers
42 views

I am trying to automate a process using Selenium. I want to run a query in StackExchange Data Explorer. I am using selenium for automation. I am unable to input the query into the textarea using ...
Adi's user avatar
  • 1
0 votes
0 answers
63 views

I'm using Stackexchange-API in one of my apps and I want to get a list of questions that a user has Upvoted. I have already implemented OAuth in the app and use the API calls with a token, so the ...
Gangula's user avatar
  • 7,800
0 votes
0 answers
76 views

I have a project that I am working on, that requires to fetch questions and answers from stack overflow. I am using version 2.3 and it is working great, but I can't fetch the content of the question. ...
Adam Basha's user avatar
-1 votes
1 answer
200 views

What are the most recent StackOverflow datasets on BigQuery? Two datasets I am aware of are very much out of date. Are there more recent ones? bigquery-public-data.stackoverflow referenced on https://...
Yulia V's user avatar
  • 3,567
1 vote
1 answer
109 views

I tried Questions Dos from stackexchange to get total count of questions for perticular tag but it has some limitation like That API return only 30 data at a time and max 100 data(question) But I need ...
Kalpana kumbhani's user avatar
0 votes
0 answers
50 views

Currently, we are using Stack exchange data explorer(SEDE) UI(integrated in application) to analyze the data and update/delete data through SQL queries. The data which we are using for analysis/update/...
Wumar's user avatar
  • 103
0 votes
0 answers
79 views

I'm encountering an error while using the StackExchange APIs for my project. The error message states: "Error: 400 - too many requests from this IP, more requests available in 83980 seconds.&...
Lakshitha Samod's user avatar
0 votes
1 answer
176 views

The following code returns only 20 questions/results. How can I retrieve the whole number of questions for that date? base_url = 'https://api.stackexchange.com/2.3' endpoint = '/questions' params = { ...
Dimitris's user avatar
  • 207
0 votes
1 answer
273 views

I tried to post a question in stack overflow with the API /questions/add. I used my generated access token and key of my registered application. The response did not throw any error but it is not ...
Karthick Balaji's user avatar
-1 votes
1 answer
185 views

Is there a way to filter users returned by /users/ endpoint to get users with some "location" value only? If so, in order to correctly filter locations like "New York, United States&...
BUKTOP's user avatar
  • 989
1 vote
1 answer
111 views

I'm trying to use the Stack Exchange API to collect all questions under a specific tag using this code: library(stackr) df_r_questions <- stack_tags("python","questions", ...
Erik Brole's user avatar
-1 votes
1 answer
761 views

I am trying to authorize google app script to the stack overflow rest api. My script asks me to open the authorization window and everything looks good from there except after I have authorized the ...
Linda Lawton - DaImTo's user avatar
0 votes
1 answer
231 views

This rest endpoint https://api.stackexchange.com/2.3/questions?order=desc&sort=activity&site=stackoverflow returns a json response when i place it in a web browser. Yet when i run the ...
Linda Lawton - DaImTo's user avatar
2 votes
1 answer
462 views

I am currently working on a project with the goal of determining the popularity of various topics on gis.stackexchange. I am using Python to interface with the stack exchange API. My issue is I am ...
Jay Rad's user avatar
  • 23
2 votes
1 answer
73 views

Using a dataframe with question ids from SO: df <- data.frame (qid = c(71663375, 71674701, 71724524)) Using the folliwng code it is possible to make 3 api calls to receive info for every question. ...
Domin D's user avatar
  • 51
2 votes
1 answer
1k views

I want to see the 'user(specifically, user's display_name') data using Stackoverflow's API. I'm using and reading the docs about StackExchange API, and still didn't get the idea about 'fetch' and ...
Keunyoung Kang's user avatar
0 votes
1 answer
324 views

I recently downloaded the stackoverflow.com-Posts.7z file from the Stack Exchange Data Dump. Upon extracting the .7z file, I was left with a Posts.xml file, which I converted to a Posts.csv file using ...
CuriosityCalls's user avatar
1 vote
1 answer
465 views

I've been trying to log in to this website using my credentials in order to scrape my profile name using google apps script. The status code is 200 and I can see that the script is able to get cookies....
robots.txt's user avatar
0 votes
2 answers
2k views

Problem Related to Get UTF-8 html content with Node's http.get - but that answer isn't working for me. I'm trying to call the Stack Overflow API questions endpoint: https://api.stackexchange.com/2.3/...
KyleMit's user avatar
  • 31.4k
0 votes
0 answers
149 views

How can do I work with StackOverflow API and HTTP request it? This is my problem: I want to get first 1000 tags from Stack Exchange API, see their popularity and usage. This is what I've done so far: ...
SimonCrane's user avatar
0 votes
0 answers
292 views

Is it possible to specify a self-hosted url? from stackapi import StackAPI, StackAPIError try: SITE = StackAPI('stackoverflow.selfhosted-enterprise.com', proxy=proxies) except StackAPIError as e: ...
dmi's user avatar
  • 1,916
0 votes
1 answer
236 views

I want to fetch the daily and weekly count of questions tagged with a particular tag. For example, I need the daily & weekly count of the number of questions asked for the top 100 languages or ...
Aniket Tiwari's user avatar
2 votes
1 answer
417 views

I want to create a React component that fetches data from Stack Overflow of a specific user. I haven't had any issues to get: reputation, answers, badges, etc. using Stack Exchange API v2.3 but I'm ...
Gass's user avatar
  • 9,640
1 vote
2 answers
881 views

I'm trying to get the markdown body of an accepted answer making this request: https://api.stackexchange.com/2.3/search/advanced?accepted=True&title=length%20undefined&is_answered=True&...
user avatar
2 votes
1 answer
109 views

Using the StackExchange API, it's possible to find out quite a bit about a user: { "badge_counts": { "bronze": 3, "silver": 2, "gold": 1 }, &...
Nico Schlömer's user avatar
1 vote
1 answer
940 views

After seeing the StackExchange API documentation I have tried the following in order to search questions by titles: from stackapi import StackAPI import json SITE = StackAPI('stackoverflow') SITE....
mostlycryptic's user avatar
2 votes
1 answer
2k views

I read about this here and here, but still I couldn't figure out how to do it in jQuery ajax. I tried the code from one of the answers of the questions I linked, but it discarded the user agent ...
Vikas's user avatar
  • 749
1 vote
1 answer
238 views

I have a comment id and I'm trying to get the tags of the parent question. The comment might be under a question or an answer. How can I use the API to do this?
Terry Windwalker's user avatar
-1 votes
4 answers
261 views

Orignal question My initial attempt was to run curl https://stackoverflow.com/users/5825294/enlico and pipe the result into sed/awk. However, as I've frequently read, sed and awk are not the best ...
Enlico's user avatar
  • 30.3k
0 votes
1 answer
3k views

This question follows on from: Do I need to edit the .patch files needed for building mdns 878.200.35 in Yocto? This chains back through several posts to considerable background. Since "mDNS"...
microajim's user avatar
2 votes
0 answers
229 views

I was trying to fetch some Stack Overflow users using the following procedure: Fetch the users with https://api.stackexchange.com/docs/users-by-ids. For each user id, fetch the top tags with https://...
Carrol's user avatar
  • 1,285
3 votes
1 answer
1k views

I am trying to get the questions and answers from StackApi to train a deep learning model. I have the problem that I don't understand how to use the custom filters so that I only get the body of the ...
Neminem's user avatar
  • 33
0 votes
2 answers
381 views

When trying to set writing access in the scope I receive the application need permission webView.loadUrl("https://stackoverflow.com/oauth/dialog?client_id=19361&redirect_uri=https://...
Ali's user avatar
  • 1
1 vote
1 answer
222 views

I am using StackAPI (python wrapper) to extract data from Stack Oveflow. Everything works perfectly except when trying to add a filter. SITE = StackAPI('stackoverflow', key=<my_key>) answers = ...
akalanka's user avatar
  • 617
-1 votes
1 answer
768 views

I needed to use the StackOverflow API to retrieve some data from the site. Actually, when I tried the first time to use the API I got an exception due to CORS policy. Access to fetch at 'https://...
Andrea Costanzo's user avatar
0 votes
1 answer
249 views

I want to get a query result from Stack Exchange API using my Java program. For example, I want to pass this URL and get the data of the question with id 805107. I have tried but only got the resulted ...
Saikat Mondal's user avatar
0 votes
1 answer
106 views

I queried Stack Exchange explorer with this query and got the result of 12946, and I am trying to bring same count of question count through Stack Exchange API: @concat('search/advanced?page=',dataset(...
user3240560's user avatar
10 votes
3 answers
400 views

I searched the entire documentation for the Stack Exchange API v2.2, but could not find any API to get the data about the Impact section on the user page. I am interested in the Impact/Number of ...
Deepak Tatyaji Ahire's user avatar
0 votes
2 answers
202 views

I am trying to read all AAD related questions and answers from Stack Exchange API /2.2/search/advanced/pagesize=100&fromdate=2019-07-01&todate=2020-10-19&site=stackoverflow&filter=!...
user3240560's user avatar
0 votes
1 answer
78 views

I am trying to build a taxonomy-like relationship graph for Stack Overflow tags. I extracted all tags and nearly ~37000 of those wikis. Before determining the relationships based on wikis, I decided ...
akalanka's user avatar
  • 617
1 vote
1 answer
633 views

I want to retrieve top rated answer given the questions id. API documentiation states that one can get all answers matching "a set of ids" from a site using the answers/{ids} method. I have ...
teslae's user avatar
  • 239
0 votes
1 answer
110 views

I'm using Py-StackExchange to get a list of questions from CrossValidated. I need to filter by the titles of pages that include the word "keras". This is my code. Its execution takes a very ...
Fluxy's user avatar
  • 2,998
1 vote
1 answer
41 views

console error : code to reproduce error: var request = require('request'); var url = 'http://api.stackexchange.com/2.2/https://stackoverflow.com/questions'; request({ headers: { 'Accept': '...
user avatar
-2 votes
1 answer
1k views

I am trying to pull specific questions on SO from a list of URLs using the stackapi Python library. I have been going through the documentation and some of the answers around similar questions on ...
Akshay Sehgal's user avatar
2 votes
1 answer
226 views

I'm trying to pull the most popular tags between a set of dates. However, the results aren't making sense. I can't figure out what the date filter does in the context of tags. Is this based on the ...
prodigeek's user avatar

1
2 3 4 5 6