288 questions
0
votes
0
answers
60
views
My OAuth provider only allows me to specify one trusted redirect domain, but I need multiple domains
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....
0
votes
2
answers
78
views
Calculate user reputation for questions and answers that are not older than a year
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 ...
0
votes
0
answers
70
views
Finding out when someone voted for your question on Stack Exchange [migrated]
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 ...
0
votes
1
answer
200
views
Why am I getting 403 on GetAsync from api.stackexchange?
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 ...
0
votes
1
answer
50
views
Check if an answer is bookmarked/favorited using Stack Exchange API
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 ...
0
votes
0
answers
42
views
Unable to insert text using Selenium
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 ...
0
votes
0
answers
63
views
Get the list of questions upvoted by me using OAuth & API
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 ...
0
votes
0
answers
76
views
How to get the contents of questions and answers from Stack Overflow?
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.
...
-1
votes
1
answer
200
views
What are the most recent StackOverflow datasets on BigQuery?
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://...
1
vote
1
answer
109
views
Need StackExchange API for question count for particular tag
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 ...
0
votes
0
answers
50
views
Stack Exchange data explorer - database connection to Aurora PostgreSQL
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/...
0
votes
0
answers
79
views
Throttle Violation in Stack Exchange APIs
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.&...
0
votes
1
answer
176
views
StackOverflow API returns only 20 questions
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 = {
...
0
votes
1
answer
273
views
Question posted through stack exchange API is not reflecting in stackoverflow
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 ...
-1
votes
1
answer
185
views
StackExchange REST API - get users from specific country
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&...
1
vote
1
answer
111
views
How can I collect all questions with a specific tag?
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", ...
-1
votes
1
answer
761
views
How to set the redirect uri in the stack overflow rest api
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 ...
0
votes
1
answer
231
views
HttpClient get Not returning json [duplicate]
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 ...
2
votes
1
answer
462
views
How do I submit a Stack Exchange API query that returns the same results as the basic Stack Overflow search?
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 ...
2
votes
1
answer
73
views
Using API to load more than one question ids per call
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.
...
2
votes
1
answer
1k
views
How to get 'user' data with stackoverflow api?
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 ...
0
votes
1
answer
324
views
How to count the frequency of specific Tags from the Stack Overflow data dump's CSV file in Python
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 ...
1
vote
1
answer
465
views
Failed to log in to a website to scrape my profile name using apps script
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....
0
votes
2
answers
2k
views
Force plain text encoding with node https get request [duplicate]
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/...
0
votes
0
answers
149
views
How do I operate around Stack Exchange API in .NET Core MVC
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:
...
0
votes
0
answers
292
views
How to access self-hosted StackOverflow with StackAPI for Python
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:
...
0
votes
1
answer
236
views
How can I fetch the number of questions with a particular tag posted this day and this week?
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 ...
2
votes
1
answer
417
views
How to get the Stack Overflow rank of a user using the Stack Exchange API?
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 ...
1
vote
2
answers
881
views
How can I get the markdown content of an accepted answer with the StackExchange API?
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&...
2
votes
1
answer
109
views
How can I get "top x% this y" from a user profile page using the StackExchange API?
Using the StackExchange API, it's possible to find out quite a bit about a user:
{
"badge_counts": {
"bronze": 3,
"silver": 2,
"gold": 1
},
&...
1
vote
1
answer
940
views
How can I search questions by titles using the StackExchange API?
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....
2
votes
1
answer
2k
views
How to add additional information in User-agent in jQuery ajax?
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 ...
1
vote
1
answer
238
views
How to get tags of the question given a comment id using the Stack Exchange API?
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?
-1
votes
4
answers
261
views
How can I retrieve programmatically from command line my SO rep and number of badges?
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 ...
0
votes
1
answer
3k
views
How do I strip and objcopy a built .so file in the Yocto bitbake compile step?
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"...
2
votes
0
answers
229
views
How can I obtain a user's top tags with one call from the Stack Exchange API?
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://...
3
votes
1
answer
1k
views
How can I use custom filters in the Stack Exchange API?
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 ...
0
votes
2
answers
381
views
How can I get write access to the API?
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://...
1
vote
1
answer
222
views
Add a filter to view answer body with StackAPI for Python
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 = ...
-1
votes
1
answer
768
views
Stackexchange REST API has been blocked by CORS policy
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://...
0
votes
1
answer
249
views
Is there any way to get the SEDE query result from my Java program using Stack Exchange API?
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 ...
0
votes
1
answer
106
views
Result count in SEDE doesn't match with Stack Exchange's API
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(...
10
votes
3
answers
400
views
Stack Exchange API to get the Impact/ Number of People Reached
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 ...
0
votes
2
answers
202
views
How to get historical data of question and answers from stackoverlfow exchange without being throttled?
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=!...
0
votes
1
answer
78
views
StackExchange API tag synonyms returns tags that do not exist on Stack Overflow
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 ...
1
vote
1
answer
633
views
How can I retrieve the top rated answer given a question id?
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 ...
0
votes
1
answer
110
views
Py-StackExchange API returns nothing for a simple query
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 ...
1
vote
1
answer
41
views
Trying to access Stack Oveflow Api using Vue.js getting error
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': '...
-2
votes
1
answer
1k
views
How can I fetch a specific question, its answers and comments given a SO URL?
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 ...
2
votes
1
answer
226
views
Stack Overflow API for popular tags using date filter - results not making sense
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 ...