The events tag has no wiki summary.
0
votes
1answer
59 views
Why does the /events service sometimes pause for a couple of minutes?
In developing the firehose service, I found that the /events API often "pauses" for a couple of minutes before resuming. Is this a known issue?
Specifically, I am polling /events every 10 seconds ...
1
vote
0answers
144 views
StackHose: live real-time event stream in your browser
About
StackHose is a continuously updated stream of new content from Stack Overflow. It uses the Firehose JSON streaming event service to get a "push" stream of new event notifications. The newest ...
7
votes
0answers
336 views
Firehose JSON streaming event service
Code Snippet
Using curl:
$ curl http://stackoverflow.hewgill.com:8080/firehose/stackoverflow
or, in a browser, http://stackoverflow.hewgill.com:8080/firehose/stackoverflow.
About
This ...
1
vote
1answer
57 views
Sorting the event stream
It seems like the data returned from the /events endpoint is flawed by being returned in descending order. For example:
{
"items": [
{
"event_type": "comment_posted",
"event_id": ...
2
votes
1answer
25 views
Is data retrieved from /events dependent on the access token used to retrieve it?
This may seem like a bit of an unusual question at first but I'll try to explain where it's coming from. My PHP wrapper (Stack.PHP) offers a caching class that follows the guidelines in the API docs ...