1👍
✅
1👍
If you are using oauth api from google. To get the user you have to do something like this
from google.appengine.api import oauth
# ...
try:
# Get the db.User that represents the user on whose behalf the
# consumer is making this request.
user = oauth.get_current_user()
except oauth.OAuthRequestError, e:
# The request was not a valid OAuth request.
# ...
- [Answered ]-Django ajax follow and unfollow
- [Answered ]-HTML form action with django and custom script
- [Answered ]-How can I include template tags in static files in Django?
Source:stackexchange.com