Hi,
We have a Django project which runs on Google App Engine and used db.UserProperty
in several models. We don't have an own User model.
My boss would like to use RPXNow (Janrain) for authentication, but after I integrated it, the users.get_current_user()
method returned None
. It makes sense, because not Google authenticated me. But what should I use for db.UserProperty
attributes? Is it possible to use rpxnow and still can have Google's User object as well?
After this I tried to use OpenID authentication (with federated login) in my application, and it works pretty good: I still have users.get_current_user()
object. As far as I know, rpxnow using openID as well, which means (for me) that is should be possible to get User objects with rpxnow. But how?
Cheers, psmith