How To Users.set_current_user?
How to create a custom login system with google-app-engine's User class? I'm making my own login system. I have tried os.environ['USER_EMAIL'] = 'john.doe@example.com', but it does
Solution 1:
You can't - the Users API only supports signing in with methods supported by that API. If you want to implement your own signin, you will need to use a third-party session library and keep track of logged in users the 'regular' way.
Post a Comment for "How To Users.set_current_user?"