Questions tagged [stackexchange-api]

Question related to StackExchange API usage

Homepage

275 questions
-1
votes
1 answer

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 app I get. redirect_uri is not under the…
Linda Lawton - DaImTo
  • 106,405
  • 32
  • 180
  • 449
-1
votes
4 answers

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 tools to parse HTML code. Furthermore, the above URL…
Enlico
  • 23,259
  • 6
  • 48
  • 102
-1
votes
1 answer

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://stackoverflow.com/users/myID/reputation' from origin…
AndreaCostanzo1
  • 1,799
  • 1
  • 12
  • 30
-1
votes
1 answer

How to consume the Stack Exchange API in Angular

I have call below API to get list of answers in angular 6 but I'm getting response null. API: https://api.stackexchange.com/docs/answers#order=desc&sort=activity&filter=default&site=stackoverflow Do I need to pass any header param ? Does anyone…
Mitul Patel
  • 66
  • 1
  • 1
  • 11
-1
votes
1 answer

Getting Post Tags using Stack Exchange API

Based on the query from Stack Exchange data explorer (SEDE): select Tags.TagName, Count(Tags.TagName) as TagCount from Posts join PostTags on Posts.Id = PostTags.PostID join Tags on PostTags.TagID = Tags.ID where Posts.Tags like…
Gunalan
  • 15
  • 2
-1
votes
2 answers

Problem with stack Exchange api curl operation in PHP json parsing

I am using StackExchange get all answers API to my project. so that I am hitting the URL https://api.stackexchange.com/2.2/answers?page=10&pagesize=10&order=desc&sort=activity&site=stackoverflow While hitting in browser the original json shows, but…
-1
votes
1 answer

What's the limit to the number of requests sent to stackAPI per second?

What's the limit to the number of requests sent to stack overflow API per second? I set waiting time of 10 seconds, but it didn't help.
-1
votes
1 answer

How to retrieve number of tags at a certain time in the past

I can see here how to get number of tags through StackExchange API. Is it possible to get number of tags at a certain time in the past? How can I run https://api.stackexchange.com/2.2/tags?order=desc&sort=popular&inname=java&site=stackoverflow with…
Matt
  • 8,195
  • 31
  • 115
  • 225
-1
votes
1 answer

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 running their example code. I do have an API…
Goosal Tapal
  • 205
  • 1
  • 2
  • 5
-1
votes
1 answer

Retrofit : Retrieved list size is always zero though my pojo classes are right

Having a bit of problem with retrofit. I'm trying to get the data's from the below json : { "items": [ { "badge_counts": { "bronze": 127, "silver": 66, "gold": 16 }, "account_id": 448874, …
Vivek_Neel
  • 1,343
  • 1
  • 14
  • 25
-1
votes
1 answer

OPserver: SQL CPU Graph Not Displayed

i am using opserver tool to monitor SQL performance everything works fine except it is not display CPU graph sparks for both standalone and cluster
Ahmed
  • 1,542
  • 2
  • 13
  • 21
-1
votes
1 answer

What is causing exceeding of Rate Limit in My Program?

I am using the Stackoverflow API to collect the tags in Stackoverflow. I am using NodeJS and am facing a typical problem. My rate limit gets exceeded after 230-250 requests.AS far as I have read it allows <30req/sec . So it should work fine…
Shiv Kumar Ganesh
  • 3,799
  • 10
  • 46
  • 85
-1
votes
2 answers

Stack Exchange API cURL

I am attempting to use cURL with the Stack Exchange API but I seem to be getting a null response, any ideas on what's happening? My code is: function get($get){ $ch = curl_init("http://api.stackoverflow.com/1.1/search?intitle=meteor"); …
user1400312
-2
votes
1 answer

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 StackOverflow. All of them say that the API only…
Akshay Sehgal
  • 18,741
  • 3
  • 21
  • 51
-2
votes
1 answer

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.
mibot
  • 1
  • 1
1 2 3
18
19