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 web service on Google's App Engine that uses Google's user API for authenticating users, managing accounts (including premium service subscriptions), and for managing data ownership. For almost everything, it works really great.

However, very often I need to use the datastore viewer to check on a user's entry in response to a support request, and need to enter GQL to look up someone's account info. The query usually looks like this:

SELECT * FROM UserAttr WHERE user = USER('blah@fish.com')

This should work just fine, but for whatever reason, the USER constructor (?) above is case sensitive, and furthermore, sometimes has weird behavior if the user has a Google account with a gmail.com address. If it's a gmail.com address, sometimes USER('whoever@gmail.com') works, but sometimes USER('whoever') works. It's maddening that I have to try all kinds of different permutations in the GQL console to try and look things up, and I usually give up if the obvious case differences don't work.

Am I doing something totally wrong here, or is the behavior of this really this bad? Any idea if this kind of thing works better in the Python API (that is, if I do a similar request via Python, will it still exhibit this idiotic behavior?). I'd like to avoid writing my own admin pages for this app, if I can make Google's dashboard work for me.

share|improve this question
3  
That's the first time I've seen a 0% accept rate. You might want to get that up a bit closer to 100%. – Steve Wellens Feb 1 '12 at 22:53
(I already commented on this? But SO doesn't like naughty language?) Anyway, repeatedly trying to accept answers came back saying I could accept the answer "in 24 hours", so I gave up. – Casey Marshall Feb 2 '12 at 23:14
And, what does that have to do with anything? – Casey Marshall Feb 2 '12 at 23:15
If you don't have a high acceptance rate, most people here won't waste their time answering your questions. Acknowledging when someone helps you (increasing your acceptance rate), is a way of saying Thank You. – Steve Wellens Feb 3 '12 at 1:53
I suspect instead it says that "this user might not give me super kewl hacker credit karma points, so I won't bother". But whatever. And I've asked like five questions on SO, and had one of them answered satisfactorily by someone besides myself. – Casey Marshall Feb 3 '12 at 19:07

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.