servant/servant-client
(cdep)illabout 2b737e4c1c Accept multiple content-types in client.
When defining a route like the following,

```
type API = Get '[JSON, PlainText] Int
```

servant-client is only able to receive responses with the content type
that comes first in the list.  In this example, it will only be able to
receive `application/json` responses.

This PR changes it so that servant-client will accept _any_ content-type
in the list.

In the example above, it will accept responses with a content type of
`application/json` or `text/plain`.
2016-07-31 13:38:50 +09:00
..
include less OverlappingInstances noise 2016-01-04 13:09:11 -05:00
src/Servant Accept multiple content-types in client. 2016-07-31 13:38:50 +09:00
test Test whole list in CaptureAll client tests 2016-07-11 14:47:05 +01:00
CHANGELOG.md added changelog entries for 0.7.1 2016-05-11 12:09:25 +08:00
docs.sh prepare merge 2015-04-20 11:15:58 +02:00
LICENSE Change copyright to servant contributors 2016-01-20 16:58:29 +01:00
README.md Remove host param from servant-client README. 2016-05-25 17:38:25 +02:00
servant-client.cabal bump version 2016-07-10 17:21:36 +02:00
Setup.hs stylish haskell changes 2015-08-18 00:07:12 +02:00
tinc.yaml Use tinc on travis 2015-11-05 09:32:13 +08:00

servant-client

servant

This library lets you automatically derive Haskell functions that let you query each endpoint of a servant webservice.

Example

type MyApi = "books" :> Get '[JSON] [Book] -- GET /books
        :<|> "books" :> ReqBody Book :> Post '[JSON] Book -- POST /books

myApi :: Proxy MyApi
myApi = Proxy

getAllBooks :: Manager -> BaseUrl -> ExceptT String IO [Book]
postNewBook :: Book -> Manager -> BaseUrl -> ExceptT String IO Book
-- 'client' allows you to produce operations to query an API from a client.
(getAllBooks :<|> postNewBook) = client myApi