I'm developing a web service on Django, and I want to make a token-based registration feature (to make it mobile-ready).
After doing some searching, I found that there's a some beautiful ready to use applications:
django-allauth, with social authorization (facebook, twitter, google+, etc.) and site-local authorization (username/email/password), but it doesn't have built-in integration with API and it is not token-based.
python-social-auth or django-rest-framework-social-oauth2, which are well-tested solutions, but they doesn't have a site-local registration (social only)
So, could you please give me some links, or some hints how to implement this? I'm very new to django and python. Thanks in advance.