This is a new developer for orkut in the below i am trying to get
is ,name and thumbnail_url of my friends .
here i am able to get name but i am not getting thumbnail_url.can u
please give some idea.
<code>
<?xml version="1.0" encoding="UTF-8"?>
<Module>
<ModulePrefs title="Gifts part 1 - Friends">
<Require feature="opensocial-0.8"/>
<Require feature="dynamic-height" />
</ModulePrefs>
<Content type="html">
<![CDATA[
<script type="text/javascript">
function loadFriends() {
var req = opensocial.newDataRequest();
req.add(req.newFetchPersonRequest
(opensocial.IdSpec.PersonId.VIEWER), 'viewer');
var viewerFriends =
opensocial.newIdSpec({ "userId" : "VIEWER",
"groupId" : "FRIENDS" });
var opt_params = {};
opt_params[opensocial.DataRequest.PeopleRequestFields.MAX] = 100;
opt_params
[opensocial.DataRequest.PeopleRequestFields.PROFILE_DETAILS]=
[opensocial.Person.Field.ID ,opensocial.Person.Field.NAME
,opensocial.Person.Field.THUMBNAIL_URL];
req.add(req.newFetchPeopleRequest(viewerFriends,
opt_params), 'viewerFriends');
req.send(onLoadFriends);
}
function onLoadFriends(data) {
var viewer = data.get('viewer').getData();
var viewerFriends = data.get('viewerFriends').getData();
html = new Array();
html.push('<ul>');
viewerFriends.each(function(person) {
if (person.getId()) {
html.push('<li>', person.getDisplayName(), '</li>');
html.push('opensocial.Person.getField
(opensocial.Person.Field.THUMBNAIL_URL'),'thumbnailUrl')
}
});
html.push('</ul>');
document.getElementById('friends').innerHTML = html.join
('');
gadgets.window.adjustHeight();
}
function init() {
loadFriends();
}
gadgets.util.registerOnLoadHandler(init);
</script>
<div id='main'>
Your friends:
<div id='friends'></div>
</div>
]]>
</Content>
</Module>
</code>
--
You received this message because you are subscribed to the Google Groups
"Orkut 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/opensocial-orkut?hl=en.