How to upload a file using a rest client for node

前端 未结 2 1848
逝去的感伤
逝去的感伤 2021-02-05 08:20

I have a REST client on node, and I\'m trying to upload pdf a file to another REST webserver which provides the ability to parse my pdf and extract some data. Basically it is a

2条回答
  •  感动是毒
    2021-02-05 08:47

    You can use request.

    There is an example for that

    fs.createReadStream('file.pdf').pipe(request.post('http://example.com/file'))
    

提交回复
热议问题