gpt4 book ai didi

javascript - Google Script - 发送 JSON POST 请求的 javascript 函数

转载 作者:行者123 更新时间:2023-11-28 01:19:51 25 4
gpt4 key购买 nike

对于我在 Google Drive 中构建的电子表格,我想从交易网站上获取余额。我有一个适用于 JSON GET 方法的函数,但现在我需要找到一个适用于 JSON POST 数据的函数。该函数应使用 3 个参数,因此我可以在电子表格上选择这些参数:

  1. 网址。
  2. key (API key )
  3. 签名( secret )

这些是使用该函数发送的 header !

网站 (poloniex.com/api) 对请求有以下要求:

All calls to the trading API are sent via HTTP POST to https://poloniex.com/tradingApi and must contain the following headers:

Key - Your API key.
Sign - The query's POST data signed by your key's "secret" according to the HMAC-SHA512 method.
Additionally, all queries must include a "nonce" POST parameter. The nonce parameter is an integer which must always be greater than the previous nonce used.

那么,任何人都可以为我提供 .gs 的工作版本或为我指出一个好的来源。另外,我不知道如何编写随机数的代码。

最佳答案

UrlFetchApp.fetch() 的文档描述您可以使用的可选参数。将参数 method 设置为“post”以发送 POST 请求而不是 GET。

您可以使用Utilities.computeHmacSignature()签署请求,尽管弄清楚这一点可能很棘手。

对于随机数,使用当前时间戳可能就足够了,可以从 new Date().getTime() 获得。

关于javascript - Google Script - 发送 JSON POST 请求的 javascript 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23371671/

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