小编Sha*_*cts的帖子

axios 相当于 curl --upload-file

我正在尝试使用他们的公共 API将 gif 上传到 Gfycat 。

这是在命令行上使用 cURL 完成的:

curl https://filedrop.gfycat.com --upload-file /tmp/name
Run Code Online (Sandbox Code Playgroud)

我尝试使用axios将其转换为 Node.js :

axios.post("https://filedrop.gfycat.com", {
    data: fs.createReadStream("/tmp/name")
}).then(console.log).catch(console.log);
Run Code Online (Sandbox Code Playgroud)

但消息错误

<?xml version="1.0" encoding="UTF-8"?>\n<Error><Code>PreconditionFailed</Code><Message>At least one of the pre-conditions you specified did not hold</Message><Condition>Bucket POST must be of the enclosure-type multipart/form-data</Condition><RequestId>6DD49EB33F41DE08</RequestId><HostId>/wyrORPfBWHZk5OuLCrH9Mohwu33vOUNc6NzRSNT08Cxd8PxSEZkzZdj/awpMU6UkpWghrQ1bLY=</HostId></Error>
Run Code Online (Sandbox Code Playgroud)

打印到控制台。

我的 Node.js 代码与 cURL 命令有何不同,使用 axios 到 cURL 命令的等效代码是什么?

javascript curl node.js axios

2
推荐指数
1
解决办法
2797
查看次数

标签 统计

axios ×1

curl ×1

javascript ×1

node.js ×1