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
Post a Comment