J'appelle un service Web comme celui-ci:
WS
.url(url)
.get
.map { response => // error occurs on this line
response.status match {
case 200 => Right(response.json)
case status => Left(s"Problem accessing api, status '$status'")
}
}
L'erreur complète: Error: Cannot find an implicit ExecutionContext, either require one yourself or import ExecutionContext.Implicits.global