You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi
I want to improve to support authorize with Basic Authorization.
I have edited in jsonRequestApi.js as below :
headers : {
"Authorization" : "Basic " + new Buffer( opts.user + ":" + opts.pass).toString("base64")
}
but it didn't work. It's time out. Please tell me where i can edit to support Basic Authorization
The text was updated successfully, but these errors were encountered:
Hi
Basic Auth should work like const Service = new solr.Service({ host: 'http://localhost:8983/solr', core: '/gettingstarted', requestDefaults:{ 'user': 'username', 'pass': 'password', 'sendImmediately': false } });
See request
Please let me know if it works for you
Hi
I want to improve to support authorize with Basic Authorization.
I have edited in jsonRequestApi.js as below :
headers : {
"Authorization" : "Basic " + new Buffer( opts.user + ":" + opts.pass).toString("base64")
}
but it didn't work. It's time out. Please tell me where i can edit to support Basic Authorization
The text was updated successfully, but these errors were encountered: