_mget with "get" rather than "GET" sends as querystring
Open
- Dominant language
- JavaScript
- Stars
- 379
- Forks
- 128
- PR merge metrics
- No merged PRs in 30d
Description
This gets interpreted to send the request as a querystring for some reason:
``` http
get /employees/_mget
{
"docs" : [
{
"_type" : "sales",
"_id" : 1
}
]
}
```
versus
``` http
GET /employees/_mget
{
"docs" : [
{
"_type" : "sales",
"_id" : 1
}
]
}
```
Contributor guide
Assessment
This issue has not been assessed yet.