Skip to content

Instantly share code, notes, and snippets.

@jarek-przygodzki
Created October 1, 2016 09:53
Show Gist options
  • Save jarek-przygodzki/f2519b06d722c53ce3cde66079cc5015 to your computer and use it in GitHub Desktop.
Save jarek-przygodzki/f2519b06d722c53ce3cde66079cc5015 to your computer and use it in GitHub Desktop.
Play 2.5.x - example of simple standalone WSClient
import play.api.libs.ws.ahc.AhcWSClient
import akka.stream.ActorMaterializer
import akka.actor.ActorSystem
implicit val system = ActorSystem()
implicit val materializer = ActorMaterializer()
val ws = AhcWSClient()
val req = ws.url("http://example.com").get().map{
resp => resp.body
}(system.dispatcher)
// after all futures completed...
ws.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment