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
- Host: GitHub
- URL: https://github.com/emptyflash/insatiable-birdy
- Owner: emptyflash
- Created: 2016-11-17T03:39:45.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-12-07T03:03:34.000Z (over 9 years ago)
- Last Synced: 2025-02-15T21:20:51.911Z (about 1 year ago)
- Language: Scala
- Size: 8.79 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Insatiable Birdy

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)
```