Reputation: 699
Is there any personal identifying information linked to this number?
Are user_id's specific to my app or does a user have the same user_id across all app engine apps?
Upvotes: 4
Views: 202
Reputation: 23508
user_id
is basically same across all GAE apps, and it might be possible to get other user info using user = User(_user_id = 'user_id')
, so I'd recommend to avoid using user id's in URLs and other client-visible information.
Upvotes: 1