288 questions
0
votes
0
answers
59
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
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
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
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 ...
-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://...
0
votes
0
answers
49
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
1
answer
175
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 = {
...
-1
votes
1
answer
182
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
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 ...
2
votes
1
answer
461
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
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 ...
1
vote
1
answer
464
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
0
answers
147
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
1
answer
227
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 ...
1
vote
2
answers
874
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&...
1
vote
1
answer
939
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....
1
vote
1
answer
224
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?
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"...
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 ...
1
vote
1
answer
219
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 = ...
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 ...
10
votes
3
answers
399
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
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 ...
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 ...
-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 ...