Hello,
Is it possible to create user without a password? I tried to create user like
this
curl -X POST http://say.couchdb:5984/_users -d '{"_id":"org.couchdb.user:test", "name":"test", "roles":[], "type" :
"user"}' -H "Content-Type:application/json"
...and like this:
curl -X POST http://say.couchdb:5984/_users -d '{"_id":"org.couchdb.user:test", "name":"test", "roles":[], "type" :
"user", *"password" : ""*}' -H "Content-Type:application/json"
..then i tried:
curl -X POST http://say.couchdb:5984/_session -d "{'name':'test',
'password':''}"
or
curl -X POST http://say.couchdb:5984/_session -d "{'name':'test'}"
and always get {"error":"unauthorized","reason":"Name or password is
incorrect."}.
Thank's
Alex