按照官网的教导,在HTTP的header里面添加了Token以为就可以了,其实还要添加一些才可以使用。
错误如上,在stackoverflow上才找打解决办法
stackoverflow链接,不是打钩钩的那个回答
错误二:配置api-token-auth
一般的账号和密码不能进入,使用超级用户账号和密码进入。猜测可能是由于我手动填写password进入,所以密码是无效的。
错误三:username不能重名
django.db.utils.IntegrityError: UNIQUE constraint failed: auth_user.username
在使用微信小程序openid作为token验证的项目里面,用openid字段传入,openid字段不能重名。
错误四:SECRET_KEY不存在
这个报错没有价值,因为错不在这里,根据报错信息发现好像和user有关,取消掉settings里面的设置,model里面改为直接注册User
#from django.contrib.auth.models import User
#AUTH_USER_MODEL = User
from django.contrib.auth.models import User
class AccountUser(models.Model):
user = models.OneToOneField(User, primary_key=True)
热门评论
django api如何实现小程序登陆,很迷茫