Django-rest-auth Facebook 注册

Django-rest-auth Facebook registration

我正在尝试使用 django-rest-auth(Allauth 的 rest 包装器)实现 facebook 登录。 我遵循了他们的教程(显示如何登录,http://django-rest-auth.readthedocs.org/en/latest/installation.html),但我对注册部分感到有些困惑。

登录视图只需要一个令牌,但没有社交注册视图。这是否意味着 django-rest-auth 不处理新用户的注册?或者它是在单独的视图中处理的?

非常感谢

Django rest auth 具有 RegisterView, it will handles the user registration part and return the Auth Token. The LoginView 将获取用户凭据并验证用户和身份验证。