0

我正在尝试将 Google Checkout 集成到我的网站中。我创建了以下函数来生成所需的 hmac-sha-1 签名:

def make_signature(cart_xml):
    import hmac
    import hashlib
    import base64

    # The number is a psuedo-merchantID, cart_xml contains a string with the
    # shopping cart xml as outlined on google's documentation.
    signature = hmac.new("711348421531236", cart_xml, hashlib.sha1)
    signature = base64.b64encode(signature.digest())

    return signature

我将此代码基于http://code.google.com/apis/checkout/developer/Google_Checkout_XML_API.html#create_checkout_cart上概述的要求

但是,我无法让我的购物车验证签名。我不断收到以下错误:“购物车签名错误”

有谁知道如何解决这一问题?

4

1 回答 1

0

弄清楚了。我使用的是商家 ID 而不是商家密钥。

于 2010-10-11T17:59:17.867 回答