This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"count": "2", | |
"recordings": [ | |
{ | |
"id": "47ce46821c942ff42f8e", | |
"start_time": 1313055762, | |
"finish_time": null, | |
"name": "Inherit everything 123", | |
"hash": "9e2e0ba334ee76aa06ef42d5565dbb70" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "82", | |
"recording_id": "47ce46821c942ff42f8e", | |
"name": "Some name", | |
"start": 1313052000, | |
"end": 1312974000, | |
"status": "killed" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"count": "5", | |
"exports": [ | |
{ | |
"id": "102", | |
"recording_id": "47ce46821c942ff42f8e", | |
"name": "Unnamed export 47ce46821c942ff42f8e 2011-08-31 13:00", | |
"start": 1313055762, | |
"end": 1313405342, | |
"status": "killed" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": 102, | |
"recording_id": "47ce46821c942ff42f8e", | |
"name": "Unnamed export 47ce46821c942ff42f8e", | |
"start": 1313055762, | |
"end": 1313405342, | |
"status": "running" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "79b0e0217227d3f1d237", | |
"start_time": 1313401533, | |
"finish_time": 1333878300, | |
"name": "ApiDocs", | |
"hash": "9e2e0ba334ee76aa06ef42d5565dbb70" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "79b0e0217227d3f1d237", | |
"start_time": 1313401647, | |
"finish_time": 1313461647, | |
"name": "ApiDocsUpdated", | |
"hash": "9e2e0ba334ee76aa06ef42d5565dbb70" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"start": "Mon, 07 Nov 2011 11:15:00 +0000", | |
"end": "Mon, 07 Nov 2011 12:15:00 +0000", | |
"streams": { | |
"693f5134c73a62ed85ef271040bf266b": { | |
"licenses": { | |
"facebook":365, | |
"twitter":18062 | |
}, | |
"seconds": 3600 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"processed": 2494, | |
"types": { | |
"buzz": { | |
"processed": 247, | |
}, | |
"twitter": { | |
"processed": 2247, | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var ws = new WebSocket('ws://websocket.datasift.com/<hash>?username=<username>&api_key=<api_key>'); | |
ws.onopen = function(evt) { | |
// connection event | |
} | |
ws.onmessage = function(evt) { | |
// parse received message | |
console.log(evt.data); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading; | |
using Datasift.DatasiftStream; | |
using Datasift.Interfaces; | |
using Datasift; | |
using Datasift.Api; | |
using Datasift; |