fullscale / elastic.js

A JavaScript implementation of the elasticsearch Query DSL
http://docs.fullscale.co/elasticjs/
MIT License
654 stars 163 forks source link

Authentication Error #106

Open annelhote opened 7 years ago

annelhote commented 7 years ago

Hello, I'm kind of newbie with elasticjs but I can't access my elasticsearch service that need an authentication :

var client = new esFactory({
   host: [{
      host: 'my.host.org',
      port: 9200,
      httpAuth : 'user:password'
   }]
});

I've got a 401 error, Unauthorized. How to connect ?

Many thanks in advance :)