Question related to StackExchange API usage
Questions tagged [stackexchange-api]
275 questions
0
votes
1 answer
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" seemed to be working in my target and the recipe puts…

microajim
- 17
- 9
0
votes
2 answers
How can I get write access to the API?
When trying to set writing access in the scope I receive the application need…

Ali
- 1
- 1
0
votes
1 answer
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 web page content. I did not get the query…

Saikat Mondal
- 117
- 7
0
votes
1 answer
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…

user3240560
- 360
- 1
- 2
- 18
0
votes
2 answers
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=!BLIw93LDFyFBUjlepdSTkMo7r6Pkpx&q=listOfTags by passing set of tags,…

user3240560
- 360
- 1
- 2
- 18
0
votes
1 answer
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 to take look at what Stack Overflow…

akalanka
- 553
- 7
- 21
0
votes
1 answer
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 long time and finally returns nothing.
cv =…

Fluxy
- 2,838
- 6
- 34
- 63
0
votes
1 answer
Questions method of the stackoverflow api returns only one page of questions
Trying to work with questions method of the stackoverflow api and it returns only one page of questions , how can I get the following pages?
The java code I am using :
URL stackoverflow = new URL("http://api.stackoverflow.com/1.1/"
+…

Sergey Kucher
- 4,140
- 5
- 29
- 47
0
votes
1 answer
How can I get the number of accepted answers of several posts?
I have a file that contains the link of some Stack Overflow pages (posts) (12000 records).
I need the number of accepted answers for each of these pages. Is there any API or another optimum way (like ones in Stack Exchange) that I can give it this…

maria
- 19
- 3
0
votes
1 answer
How can I use fromdate and todate parameters in the Stack Exchange API?
I am using the Stack Exchange API to get the number of all unanswered questions in a particular tag. I am trying to create a table which shows the change in value over a period of time. Therefore, I am using fromdate and todate. The issue is that my…

SJDT
- 23
- 4
0
votes
1 answer
Advanced search: disjunction of tags
I would like to make advanced search on tags using a disjunction (instead of the default conjunction).
For example, I would like tagged=python-asyncio;python-trio to return a superset of the results from tagged=python-asyncio.
But instead, for the…

cglacet
- 8,873
- 4
- 45
- 60
0
votes
1 answer
How can I get all the unaccepted answers within a date range at user level?
I am able to retrieve a list of all my answers, within a given date range, by using this below curl command:
curl…

ESCoder
- 15,431
- 2
- 19
- 42
0
votes
1 answer
Convert date retrieved from Stack Exchange API to some readable format
I retrieved data from the Stack Exchange API as json data and the data column was like below.
"last_activity_date": 1587151634,
"creation_date": 1584079887,
"last_edit_date": 1587150658
I cannot figure out the data type of this dates and needs to…

SjAnupa
- 102
- 10
0
votes
1 answer
How get larger amount of data from Stack Exchange API?
The Stack Exchange API returns only 30 items per request. I used a for loop to call the stack Exchange API like given below to get 4500 records.
import requests
complete_data=[]
for i in range (150):
response =…

SjAnupa
- 102
- 10
0
votes
1 answer
How to get a tag's description with Stack Exchange API?
How to get a tag's description (excerpt) via the Stack Exchange API?

max stripakoff
- 13
- 4