我已成功将django-paypal与Django调试设置一起集成到沙箱模式中。我的付款完成了,并且触发了附加到valid_ipn_received的信号。
当我进入PayPal实时模式时,也会收到付款,但是我再也没有收到任何信号。这是通常触发PayPal IPN的代码:
class StoreItemView(SomeUserCheckMixin, SomeAjaxMixin, View):
# …some business logic…
paypal_dict = {
'business': settings.PAYPAL_RECEIVER_EMAIL,
'item_name': 'my item',
'amount': '20',
'discount_amount': '10',
'currency_code': 'USD',
'invoice': generate_uuid_as_string(),
'payment_date': timezone.now().strftime('%H:%M:%S %b %d, %Y') + ' CET',
'lc': 'FR',
'bn': 'SomeCompany_BuyNow_WPS_FR',
'email': request.user.email,
'first_name': request.user.first_name,
'last_name': request.user.last_name,
'address1': request.user.profile.adress.street,
'address2': request.user.profile.adress.extension,
'zip': request.user.profile.adress.zip,
'city': request.user.profile.adress.city,
'country': 'FR',
'night_phone_a': '33',
'night_phone_b': request.user.profile.phone_number,
'notify_url': notify_url,
'return': return_url,
'cancel_return': cancel_return_url,
'custom': request.user.username + _separateur + str(cible),
}
return render(request, self.template_name, {
'form': PayPalPaymentsForm(initial = paypal_dict)
})
# After my functions to hook to the Following signals
valid_ipn_received.connect(store_check_transaction)
invalid_ipn_received.connect(store_alert_bad_transaction)
设置我的配置设置,以便ADMINS包含邮件以警告是否发生任何错误,一些日志记录消息应出现在我的自定义记录器中(并且我知道它适用于我网站上的其他操作),并且我的PayPal设置是这样设置的:
# In debug mode:
ALLOWED_HOSTS = ['localhost', '.paypal.com', 'paypal.com.']
PAYPAL_TEST = True
PAYPAL_RECEIVER_EMAIL = 'somemail-facilitator@somecompany.fr'
PAYPAL_BUY_BUTTON_IMAGE = 'https://www.somecompany.fr/static/media/pay.png'
# …and in production / live mode:
ALLOWED_HOSTS = ['.somecompany.fr', '123.234.34.56', 'paypal.com.', 'paypal.com.']
PAYPAL_TEST = False
PAYPAL_RECEIVER_EMAIL = someemail@somecompany.fr'
没有任何信号出现。我错过了什么?有没有办法检查我的IPN呼叫在哪里结束?我在PayPal开发人员仪表板上什么也没找到。
更新:我收到此断言错误,但仅在实时模式下
。AssertionError: Invalid Content-Type - PayPal is only expected to use application/x-www-form-urlencoded. If using django's test Client, set `content_type` explicitly
我知道它改为接收json。正常吗?