Closed vassilisw closed 7 years ago
This applies to documentation...
in our views.py, implementing the view_that_asks_for_money(request) instead of "notify_url": "https://www.example.com" + reverse('paypal-ipn'), we can have "notify_url": request.build_absolute_uri(reverse('paypal-ipn')),
view_that_asks_for_money(request)
"notify_url": "https://www.example.com" + reverse('paypal-ipn'),
"notify_url": request.build_absolute_uri(reverse('paypal-ipn')),
Thanks for the suggestion, done now
This applies to documentation...
in our views.py, implementing the
view_that_asks_for_money(request)
instead of"notify_url": "https://www.example.com" + reverse('paypal-ipn'),
we can have"notify_url": request.build_absolute_uri(reverse('paypal-ipn')),