Anyone know of a way to send a JSON query to an ElasticSearch server via HTTP GET? I know you can POST the JSON content to _search, but POST is not available because this is cross-domain. For example, if my query looks like this:

{
    "query": {
        "query_string": {
            "fields": ["name", "description"],
            "query": "Elastic Search"
        }
    }
}

Which I would convert to something like:

{"query":{"query_string":{"fields":["name","description"],"query":"Elastic Search"}}}

Is there a way to GET server:9200/index/type/_search?content=stringifiedquery or something similar? I've tried q= and content= as well as just passing the content after the ? but nothing seems to work. Anyone have any ideas? Or am I just out of luck?

link|improve this question

75% accept rate
what language is initiating the request? – Jonathan M Aug 12 '11 at 20:55
the language is likely to be javascript (with jquery) - it is really difficult to force jquery to send a GET request with a post body – DrTech Aug 12 '11 at 21:05
feedback

1 Answer

up vote 5 down vote accepted

You can use the source query string parameter to send what would normally be the post body.

See the bottom of this page: http://www.elasticsearch.org/guide/reference/api/

link|improve this answer
Will using source as the key value also work for POST requests? I ask because I'm trying to use RestKit (ObjC framework for json req/resp) and it tends to require key-value pairs for the json data (value) that is attached to the post request parameters being sent to the ElasticSearch instance. – pulkitsinghal Jan 23 at 2:54
1  
Yes, it will work – DrTech Jan 23 at 6:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.