I want to read the App.net public stream. However when I use a simple $http.get()
I only get one response.
$http
.get('https://alpha-api.app.net/stream/0/posts/stream/global')
.success(function (results) {
console.log('received results', results);
})
;
How do I connect to http streams in AngularJS?
Is there even a way or would I have to use something like WebSockets?