Forbidden (403) error when calling the callback URL in django
问题 I am working on a django webapp. I connected the paytm payment gateway with the django app. I did everything according to the docs, and everything works. almost. I am having a problem when calling the callback URL once the payment is over. Here is the code views.py def donate(request): if request.method == "POST": form = DonateForm(request.POST) name = request.POST.get('firstName') phone = request.POST.get('phone') email = request.POST.get('email') amount = float("{0:.2f}".format(int(request