Django でカスタム ユーザー モデルを作成し、認証 (ログインとサインアップ) に djangorestframework simplejwt を使用しています。
モデル:
class UserAccountManager(BaseUserManager):
def create_user(self, email, name, password=None):
if not email:
raise ValueError('Users must have unique email address')
email = self.normalize_email(email)
user = self.model(email=email, name=name)
user.set_password(password)
user.save()
return user
def create_superuser(self, email, name, password):
user = self.create_user(email, name, password)
user.is_superuser = True
user.is_staff = True
user.save()
return user
class UserAccount(AbstractBaseUser, PermissionsMixin):
email = models.EmailField(max_length=255, unique=True)
name = models.CharField(max_length=255)
active = models.BooleanField(default=True)
is_staff = models.BooleanField(default=False)
objects = UserAccountManager()
USERNAME_FIELD = 'email'
REQUIRED_FIELDS = ['name']
def get_full_name(self):
return self.name
def get_short_name(self):
return self.name
def __str__(self):
return self.email
問題なくサインアップできますが、(postman を使用して) ログインしようとすると、次のメッセージが表示されます。
{
"detail": "No active account found with the given credentials"
}
すべての資格情報は正確であり、Python シェルを介して、ユーザーがすべてアクティブであり、正しい電子メール ~ パスワードを持っていることを確認しました。私は何を間違っていますか?