Hi Jefferson,

Try it:

var req = opensocial.newDataRequest();
req.add(req.newFetchPersonRequest(id), "person");
req.send(onRequest);

function onRequest(data)
{

var persondata = data.get("person").getData();
persondata.each(function(person) {
      alert('name=' + person.getDisplayName());
    });


}

Let me know if you have any doubt.

Cheers,

--
Robson Dantas


2008/9/23, jeffersonpita <[EMAIL PROTECTED]>:
>
> If I have a UID can I get access to NAME, and THUMBNAIL_URL user? If
> this user is not VIEWER or OWNER?
>
> Thanks
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"OpenSocial Application Development" 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/opensocial-api?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to