gpt4 book ai didi

node.js - npm 请求 GET 参数

转载 作者:太空宇宙 更新时间:2023-11-03 22:41:00 24 4
gpt4 key购买 nike

我正在这样做:

var options = {
method: 'GET',
rejectUnauthorized: false,
url: "https://history.ripple.com/v1/accounts/r4cvz8ZLz9xBXWKkQMWpEaeEshQeG2sFxh/transactions?type=Payment&result=tesSUCCESS&limit=1000",
headers: {
"Content-Type": "application/json",
"Accept": "application/json"
}

};
request(options, callback);

它不起作用,我收到错误 500。

但是如果我只为 url 设置一个参数,如下所示: https://history.ripple.com/v1/accounts/r4cvz8ZLz9xBXWKkQMWpEaeEshQeG2sFxh/transactions?type=Payment

然后就可以了,所以我认为问题是设置参数,但我不知道该怎么做。有什么线索吗?非常感谢!

最佳答案

好吧,我自己找到了答案,它非常简单。

您只需将查询参数放入选项中,如下所示:

qs: {type: "Payment", result:"tesSUCCESS", limit:1000},

关于node.js - npm 请求 GET 参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29555756/

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