gpt4 book ai didi

python - 如何将 sandbox.paypal 站点更改为 django-merchant 中的 paypal 站点?

转载 作者:太空宇宙 更新时间:2023-11-04 10:57:11 25 4
gpt4 key购买 nike

我正在使用 django-meerchant 进行 Paypal 支付 http://readthedocs.org/docs/django-merchant/en/latest/offsite/paypal.html ...

我的观点有这段代码:

                            pay_pal = get_integration("pay_pal")
pay_pal.add_fields({
"business": client.paypal_id,
"item_name": product.name,
"invoice": inst.trans_code,
"notify_url": settings.BASE_DNS + str(client.id) + '/book/'+str(inst.id) +'/success/?booksaved=1',
"return_url": settings.BASE_DNS + str(client.id) + '/book/'+str(inst.id) +'/success/?booksaved=1',
"cancel_return": settings.BASE_DNS + str(client.id) + '/?booksaved=0',
"amount": inst.book_charged})
return render_to_response("pay_pay.html", {"obj": pay_pal, "product": product.name, "amount": inst.totalcost},context_instance=RequestContext(request))

我的模板 pay_pay.html

{% extends "main_base_bookingpage.html" %}
{% load billing_tags %}

{% block content %}
Required Parameters from the view
<ul>
<li> item_name : {{ product }}</li>
<li> amount : {{ amount }}</li>
</ul>
{% paypal obj %}
{% endblock %}

我的问题是如何更改它以便它更改为 paypal 站点而不是 sandbox.paypal 站点?

提前致谢...

最佳答案

根据文档,您可以指定 test_mode调用get_integration时的参数(pay_pal = get_integration("pay_pal", test_mode=False)),或设置MERCHANT_TEST_MODE在设置文件中。此外,您可能还需要更改 PAYPAL_TEST 设置。

附言。我不使用 django-merchant,也不知道这是否可行,这只是文档中的假设。

关于python - 如何将 sandbox.paypal 站点更改为 django-merchant 中的 paypal 站点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8845732/

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