node.js - Is there a high level http node module that supports what 'curl --negotiate' does? -


i searching node module make rest requests. found request module looks popular, doesn't seem mention whether can authentication negotiation. need emulate curl doing --negotiate flag:

--negotiate  (http) enables negotiate (spnego) authentication. 

i thinking use child_process module , call down curl myself, wanted check here first in case others using better solution.

thanks

seems exist module maybe bit immature you.

https://www.npmjs.com/package/krb5

its native binding kerberos library

it able generate spnego tokens

npm install krb5 

Comments

Popular posts from this blog

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -