> http://127.0.0.1:5984/books/_view/query/byAuthor?key=Tolkien
> returns an error {"error":"EXIT"...
> what's going wrong?

Bernd

Not sure if it's the cause of your error, but you'll need to URL
encode a JSON encoded key, so Tolkien becomes "Tolkien" becomes
%22Tolkien%22

http://127.0.0.1:5984/books/_view/query/byAuthor?key=%22Tolkien%22

Paul

Reply via email to