An open API service indexing awesome lists of open source software.

https://github.com/emptyflash/insatiable-birdy

A twitter streaming client using akka-http
https://github.com/emptyflash/insatiable-birdy

Last synced: 11 months ago
JSON representation

A twitter streaming client using akka-http

Awesome Lists containing this project

README

          

# Insatiable Birdy

![A gif of a drinking bird](http://i.giphy.com/l41lUJ1YoZB1lHVPG.gif)

A twitter streaming client using akka-http

## Example

``` scala
import io.github.insatiablebirdy._

implicit val system = ActorSystem("insatiable-birdy")
implicit val materializer = ActorMaterializer()
import system.dispatcher
val consumerKey = ""
val consumerSecret = ""
val accessToken = ""
val tokenSecret = ""
val credentials = OAuth1Credentials(
consumerKey,
consumerSecret,
accessToken,
tokenSecret)
val request = FilterEndpoint(credentials, Track(List("#np")))
InsatiableBirdy.twitterEndpointFlow(request).runForeach(println)
```