Hi, I like to save one single value to recognize the current logged in
user. I tryed to use _IG_Prefs() to save this value as a preference.
This works fine for iGoogle and the old api.
prefs = new _IG_Prefs();
...
var e4aUser;
if (prefs)
e4aUser = prefs.getString("e4aUser");
else
e4aUser = 0;
....
if (prefs && !e4aUser) {
// get a new e4aUser
....
prefs.set("e4aUser", e4aUser);
}
But as I noticed it's not workingen eg. in the ORCUT developer
sandbox.
How should I write my program, so it is working in all versions of
open social and the legacy API too? Is this possible?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"iGoogle Developer Forum" 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-Gadgets-API?hl=en
-~----------~----~----~----~------~----~------~--~---