我想知道如何在 javascript 中编写这个 python 请求:
url = "something.something"
data = {"name":"description"}
auth = ("user","11111")
x = requests.post(url, json=data, auth=auth)
到目前为止我有这个:
fetch(`something.something`, {
method: 'POST',
header: {
'Content-Type': 'application/json',
'Authorization': 'user:11111',
},
body: {
"name": "description"
}
})
但是我有一个403。我的猜测是授权格式不正确。
饮歌长啸
相关分类