Giter Club home page Giter Club logo

Comments (5)

fzlee avatar fzlee commented on August 19, 2024

我没有使用过沙箱环境,不知道是不是因为这个导致的。如果私钥签名公钥可以验证通过的话,至少可以证明签名是正确的。

可否提供一些详细的信息,比如

  1. Python的版本
  2. 你是怎么调用这个接口的,比如具体的,可以重现这个错误的代码。
  3. tests目录下有一些私钥,你可以使用其中的一个私钥对待加密字符串签名,并将结果粘贴上来。我可以帮忙检查检查检查问题

from alipay.

pengaman avatar pengaman commented on August 19, 2024

当请求index时:

def test(request):
	alipay = AliPay(
	      app_notify_url='http://www.chanvr.com/demo',
	      appid="2016073000126542",
	      app_private_key_path="rsa_private_key.pem",
	      app_alipay_public_key_path="rsa_public_key.pem"
	)
	order_string = alipay.create_wap_trade(out_trade_no="20161112", total_amount="0.01", subject="测试订单", return_url="")
	print(order_string)
	return render_to_response("index.html",{'order_string':order_string})

index(一个button):

<body>
	<form method="post" action="https://openapi.alipaydev.com/gateway.do?{{order_string}}" >
		<input type="submit" name="button" value="ok">
	</form>	
</body>

from alipay.

pengaman avatar pengaman commented on August 19, 2024

pyhton 版本2.7
django 版本1.10

from alipay.

fzlee avatar fzlee commented on August 19, 2024

我刚才测试了一下,可能是因为return_url = "" 导致的。你可以这样试试

order_string = alipay.create_wap_trade(out_trade_no="20161112", total_amount="0.01", subject="测试订单", return_url="http://www.chanvr.com/demo")

from alipay.

fzlee avatar fzlee commented on August 19, 2024

问题原因有可能是POST 表单给支付宝的时候,将form里面的button一起POST 到支付宝了,和这个库无关。

from alipay.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.