Search code examples
akka-httpspray-jsonhttpie

"Expected List as JsArray" when posting to an akka-http server


I'm attempting to create a slight variation of the Orders/Items application here: https://github.com/akka/akka-http/blob/master/docs/src/test/scala/docs/http/scaladsl/SprayJsonExampleSpec.scala#L51

I'm connecting to the server using httpie, the command is:

http POST http://localhost:8080/post_an_order items=[]

I get the following error:

HTTP/1.1 400 Bad Request
Content-Length: 73
Content-Type: text/plain; charset=UTF-8
Date: Wed, 08 Feb 2017 19:04:37 GMT
Server: akka-http/10.0.3

The request content was malformed:
Expected List as JsArray, but got "[]"

The code is:

import akka.actor.ActorSystem
import akka.stream.ActorMaterializer
import akka.http.scaladsl.Http
import akka.http.scaladsl.server.Directives._
import akka.http.scaladsl.marshallers.sprayjson.SprayJsonSupport._
import spray.json.DefaultJsonProtocol._
import scala.io.StdIn

case class Item(id: Long, name: String)
case class Order(items: List[Item])

object WebServer {
  implicit val system = ActorSystem()
  implicit val materializer = ActorMaterializer()
  implicit val executionContext = system.dispatcher

  implicit val itemFormat = jsonFormat2(Item)
  implicit val orderFormat = jsonFormat1(Order)

  def main(args: Array[String]) {
    val route =
      get {
        pathSingleSlash {
          complete( Item(123, "DefaultItem") )
        }
      } ~
      post {
        path("post_an_order") {
          entity(as[Order]) { order =>
            val itemsCount = order.items.size
            val itemNames = order.items.map(_.name).mkString(", ")
            complete(s"Ordered $itemsCount items: $itemNames")
          }
        }
      }

    val bindingFuture = Http().bindAndHandle(route, "localhost", 8080)

    println("http://localhost:8080/")

    StdIn.readLine()
    bindingFuture.flatMap( _.unbind() ).onComplete( _ => system.terminate() )
  }
}

Solution

  • The server is fine. Two issues with your HTTPie call:

    1. JSON arrays require the := assignment operator in HTTPie
    2. you'll need to override the Accept header to receive a 200. Otherwise, HTTPie will assume Accept:application/json and Akka-HTTP will come back with a 406 - Not Acceptable error.

    http POST http://localhost:8080/post_an_order Accept:text/plain items:=[]