request() got an unexpected keyword argument 'customer'
问题 Was implementing the razorpay,got the above error. I need to create a new customer in the razorpay api. unable to get the customer as it is saying the error is unable to get customer. from django.db import models from customers.models import Customer from django.db.models.signals import post_save,pre_save import razorpay client = razorpay.Client(auth=("", "")) class BillingProfile(models.Model): customer = models.OneToOneField(Customer,null=True,blank=True) inserted = models.DateTimeField