Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a db.Model that has a db.UserProperty. For example:

class Photo( db.Model ):
    owner = db.UserProperty()
    title = db.StringProperty()

When I want to get all the photos for a user, I do this:

photos = Photo.gql( "WHERE owner = USER(:1)", users.get_current_user().nickname() )

This is causing problems, however, between Google and non-Google nicknames. When testing locally, if I use the email address test@example.com, then the nickname is "test@example.com". If I use test@gmail.com, then the nickname is "test". When I test with a Gmail account, I have to append "@gmail.com" to .nickname().

Is there a better way to do this than hard-coding + "@gmail.com" to all my database queries?

share|improve this question
Nicknames aren't guaranteed (or even intended) to be unique. – Nick Johnson May 2 '11 at 3:42

1 Answer

up vote 5 down vote accepted

photos = Photo.gql("WHERE owner = :1", users.get_current_user())

share|improve this answer
Well, that was simple! Thanks! – Aaron Wheeler May 1 '11 at 5:39
Also if you are getting the value from html, then you should create a user object by passing username to Users.User(). – Abdul Kader May 1 '11 at 15:02

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.