angular-http-batcher
angular-http-batcher copied to clipboard
adapter for grape-batch request
We are using grape-batch to handle batch requests in the server.
a POST http request is expected with a body like:
{
requests:
[
{
method: 'GET',
path: '/api/v1/users'
},
{
method: 'POST',
path: '/api/v1/login',
body: { token: 'nrg55xwrd45' }
}
]
}
What does the response look like?
@PedroEsperanca Any progress on this?