gpt4 book ai didi

javascript - 将 python 请求转移到 node.js 请求时遇到问题

转载 作者:太空宇宙 更新时间:2023-11-04 02:56:24 29 4
gpt4 key购买 nike

所以我目前有 python 中的功能代码

import requests
import json
address = "*address here*"
viewkey = "*viewkey here*"
headers = {'content-type': 'application/json'}
url = "https://api.mymonero.com:8443/get_address_txs"

data = {"address":address,"view_key":viewkey}
data = json.dumps(data)


response = requests.post(url, data=data, headers=headers)
print(response.text)

我尝试转移到nodejs以将其与我编写的另一个程序集成

var request = require('request');

var options = {
url: 'https://api.mymonero.com:8443/get_address_txs',
headers: {'content-type': 'application/json'},
data: JSON.stringify({
address:"address",
viewkey:"viewkey"
})
};

request.post(options,function(error, response, body) {
console.log(body);
})

我假设代码是相同的,但显然不是,我从服务器的第二段代码中收到错误。请问有人可以帮我迁移这个吗?

注意:我知道 python 中的 requests 有一个 json 属性,为了清楚起见,我用 python 编写了它。

根据记录,我从 javascript 得到的响应是:

{
"Error": "Problems parsing JSON"
}

当我从 python 中获取时:

{
"total_received": "152840132538",
"scanned_height": 2589644,
"scanned_block_height": 1320308,
"start_height": 2586111,
...
}

最佳答案

不要将您的消息字符串化。应该是这样。

关于javascript - 将 python 请求转移到 node.js 请求时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44231031/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com