Python:Google Checkout 签名函数

发布于 2024-09-26 13:17:31 字数 768 浏览 1 评论 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

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

有人知道如何解决此问题吗?

I am attempting to integrate Google Checkout into my website. I have created the following function for generating the hmac-sha-1 signature requred:

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

I based this code off of the requirements outlined on http://code.google.com/apis/checkout/developer/Google_Checkout_XML_API.html#create_checkout_cart

However, I cannot get my cart to validate the signature. I keep receiving the following error: "Bad Signature on Cart"

Does anyone know how to fix this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

少女的英雄梦 2024-10-03 13:17:31

想通了。我使用的是商户 ID,而不是商户密钥。

Figured it out. I was using the Merchant ID instead of the Merchant Key.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文