You are using an outdated snippet. orkut doesn't support versions of
the OpenSocial specification below 0.7. Try the List Friends sample in
the updated OpenSocial Developer's Guide instead (under "Complete Code
for List Friends"):

http://code.google.com/apis/opensocial/docs/0.8/devguide.html

- Jason

On Oct 3, 5:34 am, ARUP <[EMAIL PROTECTED]> wrote:
> HI
> for list of friends i am using this code but its not working can
> please help where i am wrong
>
> <?xml version="1.0" encoding="UTF-8"?>
> <Module>
> <ModulePrefs title="List Friends Example">
> <Require feature="opensocial-0.5"/>
> </ModulePrefs>
> <Content type="html">
>
> <![CDATA[
>
> <script type="text/javascript">
>
> /**
> * Request for friend information when the page loads.
> */
> function getData() {
> document.getElementById('message').innerHTML = 'Requesting
> friends...';
> var req = opensocial.newDataRequest();
> req.add(req.newFetchPersonRequest('VIEWER'), 'viewer');
> req.add(req.newFetchPeopleRequest ('VIEWER_FRIENDS'),
> 'viewerFriends');
> req.send(onLoadFriends);
>
> };
>
> /**
> * Parses the response to the friend information request and generates
> * html to list the friends along with their display name and picture.
> *
> * @param {Object} dataResponse Friend information that was requested.
> */
> function onLoadFriends(dataResponse) {
> var viewer = dataResponse.get('viewer').getData();
> var html = 'Friends of ' + viewer.getDisplayName();
> html += ':<br><ul>';
> var viewerFriends = dataResponse.get('viewerFriends').getData();
> viewerFriends.each(function(person) {
> html += '<li>' + person.getDisplayName() + '</li>';});
>
> html += '</ul>';
> document.getElementById('message').innerHTML = html;};
>
> _IG_RegisterOnloadHandler(getData);
>
> </script>
> <div id="message"> </div>
> ]]>
> </Content>
> </Module>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Orkut Developer Forum" group.
To post to this group, send email to opensocial-orkut@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/opensocial-orkut?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to