python - 如何使用 django-paypal 获取付款通知

标签 python paypal paypal-ipn paypal-sandbox django-paypal

我已经使用 django-paypal 站点上的加密按钮文档设置了所有内容。我似乎没有收到任何付款已发生的通知。我知道我一定是遗漏了某些东西或做错了一些事情,但是除非付款后我单击返回站点,否则我无法对任何 View 进行 POST。我需要收到付款通知才能继续。谢谢。

这是我的观点:

from django.http import HttpResponse
from django.template import RequestContext, loader
from django.shortcuts import render, HttpResponseRedirect, render_to_response
from paypal.standard.forms import PayPalEncryptedPaymentsForm
from django.core.urlresolvers import reverse
import eccomerce.settings as settings
from datetime import datetime
from paypal.standard.models import ST_PP_COMPLETED
from django.views.decorators.csrf import csrf_exempt
from paypal.standard.ipn.signals import valid_ipn_received

def show_me_the_money(sender, **kwargs):
    ipn_obj = sender
    if ipn_obj.payment_status == ST_PP_COMPLETED:
        # Undertake some action depending upon `ipn_obj`.
        payment = True
    else:
        payment = False

valid_ipn_received.connect(show_me_the_money)

def index(request):

    # What you want the button to do.
    paypal_dict = {
    "business": settings.PAYPAL_RECEIVER_EMAIL,
    "amount": "0.01",
    "currency_code": "GBP",
    "item_name": "picture01",
    "invoice": "unique-%s" % (str(datetime.now())),
    "notify_url": "http://127.0.0.1:8000/notify/",
    "return_url": "http://127.0.0.1:8000/return/",
    "cancel_return": "http://127.0.0.1:8000/cancel/",

    }
    valid_ipn_received.connect(show_me_the_money)

    # Create the instance.
    form = PayPalEncryptedPaymentsForm(initial=paypal_dict)
    context = {"form": form}
    return render_to_response("eccomerce_webapp/index.html", context)


@csrf_exempt
def notify(request):
    valid_ipn_received.connect(show_me_the_money)

    context = {}
    return render_to_response("eccomerce_webapp/notify.html", context)


@csrf_exempt
def cancel(request):
    valid_ipn_received.connect(show_me_the_money)

    context = {}
    return render_to_response("eccomerce_webapp/cancel.html", context)

@csrf_exempt
def return_view(request):
    valid_ipn_received.connect(show_me_the_money)

    context = {}
    return render_to_response("eccomerce_webapp/return.html", context)

这是我的网址:

from django.conf.urls import patterns, include, url
from eccomerce_webapp import views

urlpatterns = patterns('',
    url(r'^notify/$', views.notify, name='notify'),
    url(r'^return/$', views.return_view, name='return'),
    url(r'^cancel/$', views.cancel, name='cancel'),
    url(r'^$', views.index, name='index'),
    (r'^something/paypal/', include('paypal.standard.ipn.urls')),
)

最佳答案

PayPal 的 IPN 不会回调到您的本地 URL:http://127.0.0.1:8000/notify/

IPN testing 上查看他们的文档.

PayPal 建议使用直接提交到您的通知端点的表单对您自己的测试页进行编码。这可能看起来像(来自他们的文档):

<form target="_new" method="post" action="{% url 'notify' %}">
    <input type="hidden" name="SomePayPalVar" value="SomeValue1"/>
    <input type="hidden" name="SomeOtherPPVar" value="SomeValue2"/>

    <!-- code for other variables to be tested ... -->

    <input type="submit"/>
</form>

在某个地方的沙盒环境中启动您的应用程序后,您可以开始使用 IPN 模拟器进行测试。

关于python - 如何使用 django-paypal 获取付款通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28408960/

相关文章:

python - Python有像Mathematica一样的 `nest`函数吗?

android paypal 支付网关集成问题

django - Paypal Django

Paypal IPN 始终获得状态 - 已排队

php - 使用重定向而不是按钮通过 Paypal 付款安全地设置动态金额?

python - Sentinel-2数据: plotting RGB Composite Image using Python3

Python 3 - 帮助格式化数组/表输出

python - fig.add_subplot() *transform* 不起作用?

php - Paypal 定期付款和计费周期

paypal - 嵌入式 Paypal 登录按钮