I am trying to use the npm request (https://www.npmjs.com/package/request) package to perform a POST request with HTTP Digest Authentication. How could i use the 'request' package to perform HTTP Digest Authentication?
Here is a valid cURL command that works:
curl -X POST -F 'attr1=value1' -F 'file=@./assets/filename' --digest -u 'username:password' 'http://my.api'
How could i achieve this with node.