0

我想向 cuckoo 沙箱的 API 发送一个 URL 来处理:在他们的官方文档中,他们给了我一个 python 代码来做到这一点:

import requests
REST_URL = "http://localhost:8090/tasks/create/url"
SAMPLE_URL = "url/path"
HEADERS = {"Authorization": "Bearer S4MPL3"}
data = {"url": SAMPLE_URL}
r = requests.post(REST_URL, headers=HEADERS, data=data)
task_id = r.json()["task_id"]

这段代码有效,然后我尝试使用 axios 在 noedJS 中实现代码,所以我从失眠开始,它有效:

失眠症 的图片1 失眠症的图片2

正如您所看到的 - 它也有效:但是当我尝试通过 axios 执行此操作时,响应不是错误,而是返回给我{task_id : null}

这是代码:

 let config = {
    headers: {
        Authorization: "Bearer kbOX2efe5Agq1LoTMJCy8w",
        'Content-Type' :"multipart/form-data"
    },
    data: {"url" :"https://cuckoo.readthedocs.io/en/latest/usage/api/"}
  }


axios.post("http://localhost:8070/tasks/create/url", config) .then(response => { res.send(response.data) }) .catch((error) => { res.send(error.response) })
4

0 回答 0