Hi,
I have the following setup:
FacebookTable {
String facebookid;
String globalid;
}
TwitterTable {
String twitterid;
String globalid;
}
GlobalUser{
String generatedKey;
List<String> socialids;
List<Informations> infos;
..
}
Suppose i want to create a user through Facebook i get a FacebookTable
that is connected to a GlobalUser, then i want to add a previous
Twitter account(with a GlobalUser) to that Facebook+GlobalUser, so i
have to merge the Informations and update the globalids.
I can't do that because these arent from the same entitygroup..
Any suggestions?
the login process is like so:
-> User authenticates through Facebook -> fetch globalid from
FacebookTable -> fetch GlobalUser -> return session.
--
You received this message because you are subscribed to the Google Groups
"Google App Engine for Java" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine-java?hl=en.