社交应用Django-带有Python3.7的关联模型错误

时间:2018-10-19 13:42:51

标签: python django python-social-auth

我正在使用social-auth-app-django==2.1.0

使用Python 3.7保存Association模型时,secret像这样保存在数据库b'0j1KDtdsviAJOAqdSatAwNdfzsg=\n'中。检索项目时,这会导致异常:Invalid base64-encoded string: length cannot be 1 more than a multiple of 4

如果我将机密保存的位置更改为:https://github.com/python-social-auth/social-app-django/blob/master/social_django/storage.py#L155

assoc.secret = base64.encodestring(association.secret).decode()它正常工作。

这是social-app-django库中的错误,还是我做错了什么?

0 个答案:

没有答案