Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Anybody know how to use datastore authentication based on Kay framework? The documentation is quite limited so that I can not do it.

http://kay-docs.shehas.net/tutorial.html#authentication

http://kay-docs.shehas.net/auth.html

I want to use the authentication against Google account by defining my own model.

myapp.models:

from google.appengine.ext import db
from kay.auth.models import GoogleUser

class AdminUser(GoogleUser):
  pass

myapp.settings:

MIDDLEWARE_CLASSES = (
  'kay.sessions.middleware.SessionMiddleware',
  'kay.auth.middleware.AuthenticationMiddleware',

)
AUTH_USER_BACKEND = 'kay.auth.backends.datastore.DatastoreBackend'
AUTH_USER_MODEL = 'myapp.models.AdminUser'

I feel that I need to change something here

AUTH_USER_BACKEND = 'kay.auth.backends.datastore.DatastoreBackend'

but I do not know how to modify it.

Another thing is that the tutorial explains about creating a new user

You can also use manage.py create_user command like following:

$ python manage.py create_user hoge

I tried it, and I got the error:

WARNING:root:The rdbms API is not available because the MySQLdb library could no
t be loaded.
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.