I've set up Tastypie within a Django project and the API is correctly serving resources. I am now trying to allow mobile users (applications) to sign up, sign in and sign out through said API.
class BaseResource(ModelResource):
class Meta:
allowed_methods = [ 'get' ]
authentication = BasicAuthentication()
class UserResource(BaseResource):
class Meta:
queryset = User.objects.all()
resource_name = 'users'
...
class ProfileResource(BaseResource):
class Meta:
queryset = Profile.objects.all()
resource_name = 'profiles'
...
So this serves my first purpose. Regarding the login, I don't think BasicAuthentication
is appropriated for requests from a mobile. From what I've read there seem to be several ways to do what I want:
- How can I login to django using tastypie
- How to sign-in? Django TastyPie with ApiKeyAuthentication actual authentication Process
What bothers me in the first link (see the answer) is that the mobile application has to send JSON containing the raw password:
{ 'username' : 'me', 'password' : 'l33t' }
Isn't it possible that someone/thing grab this JSON and thus have access to the password ? Wouldn't it be better to use ApiKeyAuthentication
?
I understand less and less the more I read about it. If the account has been created from the Web platform (django-userena
) then I can't use ApiKeyAuthentication
because the key should be created when a new User
is saved.
I can find several ways of doing what I want, and I can't find the right one... I do realize this question has been asked and answered many times, but I'm looking fo directions about implementing this in the best way regarding my needs.
I ended up doing the following: