- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是新手,正在学习使用 API。我在使用 axios 时收到 POST 请求错误。
在docs我想交互的 API,他们给出了 curl 示例。
curl -X POST https://ssuploader.streamsb.com/upload/01
-d "api_key=948324jkl3h45h"
-d "@path/filename.mp4"
-H "Content-Type: application/x-www-form-urlencoded"
我正在尝试使用 axios 发出该 POST 请求。我写了这样一个简单的脚本。
const axiosConfig = {
headers : {
"Content-Type": "application/x-www-form-urlencoded"
}
}
const file = __dirname + "/video/Video.mp4";
const fileData = fs.readFileSync(file);
const data = `api_key=${API_KEY}&${fileData}`;
axios.post('https://ssuploader.streamsb.com/upload/01', data, axiosConfig).then((result) => {
console.log(result.data);
}).catch((err) => {
console.log("Getting Error : ", err);
});
我遇到了这个错误。
Getting Error : AxiosError: getaddrinfo ENOTFOUND ssuploader.streamsb.com
我对与 API 交互真的很陌生,所以我认为在将 curl 转换为 axios 时我的某些结构是错误的。我真的不知道该怎么办。我的意思是我无法弄清楚我的错误。谁能帮我?非常感谢。
一些变化
我在答案的帮助下弄清楚了我的一些错误。我忘了先获取服务器。所以我更新了我的代码。
const file = __dirname + "/video/Video.mp4";
const fileData = fs.createReadStream(file);
const formData = new FormData();
formData.append('file', fileData);
formData.append('api_key', API_KEY);
console.log(formData)
axios.get(`https://api.streamsb.com/api/upload/server?key=${API_KEY}`).then(result => {
const url = result.data.result;
axios.post(url, formData, axiosConfig)
.then((result) => {
console.log(result.data);
}).catch((err) => {
console.log("Getting Error : ", err);
});
})
但是我得到了新的错误。
AxiosError: Request failed with status code 400
最佳答案
据我从文档中了解到,这是一个两步过程。首先,您需要获取上传 URL(他们称之为服务器),然后使用它来上传您的文件。
所以使用这样的东西:
axios.get(`https://api.streamsb.com/api/upload/server?key=${API_KEY}`).then((result) => {
const url = result.data.result;
// your post request to this url here
}).catch((err) => {
console.log("Getting Error : ", err);
});
关于javascript - 公理错误 : getaddrinfo ENOTFOUND,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/75085050/
对于我来说,Bower 安装对于多个软件包似乎一直失败。我尝试删除以下(可嵌套的)包提及,然后对其他人失败。 我试过设置 git 设置 - git config --global url."https
我刚刚安装了 heroku,我正在使用 powershell 登录,但我不断收到此消息: enotfound: getaddrinfoo enotfound api.heroku.com api.he
我的步骤如下: 下载heroku-osx.pkg,并安装它。 $ heroku login 使用我的账号和密码 克隆了 ruby-getting-started:$ git clone https
有没有人遇到这个错误: ENOTFOUND: getaddrinfo ENOTFOUND rendezvous.runtime.heroku.com rendezvous.runtime.heroku
我是新手,正在学习使用 API。我在使用 axios 时收到 POST 请求错误。 在docs我想交互的 API,他们给出了 curl 示例。 curl -X POST https://ssuploa
我已经初始化了一个 nuxt 项目,当我尝试使用 npm run dev 或 yarn dev 命令运行它时,它返回了这个错误: build [================== ] 91
我正在尝试安装https://github.com/catarse/catarse VPS 上的脚本(在我的本地计算机上工作正常),当我输入命令 bower install 时出现错误: bower
使用Node.js尝试获取以下网页的html内容时: eternagame.wikia.com/wiki/EteRNA_Dictionary 我收到以下错误: events.js:72 thr
我的 meteor 目前正在我的本地主机上运行。 我添加了 meteor 电子邮件包 meteor add email 在 server/server.js 我添加了(我的密码有很多特殊字符(@#$%
我有请求功能并尝试集成 Firebase 的宽度云功能。 var http = require("https"); function addUserToMailchimpList(email)
我收到此错误: getaddrinfo ENOTFOUND localhost Error: getaddrinfo ENOTFOUND localhost at errnoException
什么会导致下面屏幕截图中出现的错误? 最佳答案 在/etc/hosts 中添加 127.0.0.1 localhost 解决了问题 谢谢 关于android - 错误 : getaddrinfo EN
我安装了 bower npm install -g Bower bower --version 1.3.9 bower 搜索 jquery bower ENOTFOUND 请求 https://bow
我有一个与服务器通信的 bluemix Node js 应用程序。我有测试和生产环境。在开发环境中,我们与测试服务器通信,我收到一个 Node js 错误。 当我将服务器 URL 更改为生产服务器时,
我一直在我的日志中得到这个: problem with request: getaddrinfo ENOTFOUND api.paypal.com api.paypal.com:443 { [Erro
我是 firebird 数据库的新手。 我已经创建了一个数据库“a”和一个表“STUDENT”。 我正在尝试使用这个 npm 包连接到数据库 https://www.npmjs.com/package
我有一个简单的 Node.js 机器人,它每秒向 rest API 发出一个 HTTP 请求。 如果返回的数据是正确的,那么我将构建一个 URL,并在其中进行 HTTP POST。 一切正常,但在运行
我有一个链接列表,在处理一些数据之前我需要检查这些链接。使用 http.get 检查 header 返回错误: events.js:72 throw er; // Unhandle
我正在尝试执行 API.AI 教程来为 Google Assistant 构建天气机器人(这里的那个:https://dialogflow.com/docs/getting-started/basic
我在 cli Node 脚本中使用 axios。我注意到有时在控制台内会记录此错误: Error: getaddrinfo ENOTFOUND www.foobar.com at GetAdd
我是一名优秀的程序员,十分优秀!