0

我的表格目前是这样的:

<form action="https://www.dwolla.com/payment/pay" method="POST" class="form-horizontal">
    <input type="hidden" name="_csrf" value="[redacted]">
    <input type="hidden" name="key" value="[redacted]">
    <input type="hidden" name="signature" value="[redacted]">
    <input type="hidden" name="timestamp" value="1347696587496">
    <input type="hidden" name="callback" value="http://127.0.0.1:3000/donate/dwolla">
    <input type="hidden" name="redirect" value="http://127.0.0.1:3000/credits">
    <input type="hidden" name="test" value="1">
    <input type="hidden" name="destinationId" value="812-726-7978">
    <input type="hidden" name="shipping" value="0.25">
    <input type="hidden" name="tax" value="0">
    <input type="hidden" name="name" value="donation credit">
    <input type="hidden" name="description" value="donation credit">
    <!-- amount input and submit button -->
</form>

使用 node.js,我像这样创建我的签名(请注意,我不使用任何订单 ID):

dwolla.signature.create = function(timestamp) {
  return crypto
    .createHmac('sha1', dwolla.secret)
    .update(dwolla.key)
    .update('&')
    .update(timestamp.getTime().toString())
    .update('&')
    .digest('hex')
}

var timestamp = new Date()
var signature = dwolla.signature.create(timestamp)

现在,当我单击提交时,我会在以下地址收到回调:http://127.0.0.1:3000/credits?error=failure&error_description=Invalid+timestamp.这意味着至少我的密钥/秘密是有效的,我的签名也是有效的,但我的时间戳不是。

我的时间戳有什么问题?

4

1 回答 1

0

Javascript 时间是毫秒而不是秒 -_-

于 2012-09-16T01:05:46.960 回答