Hi all,
I've already put my question @
http://groups.google.com/group/opensocial-api/browse_thread/thread/045bc666cfb034d7#.
But repeating in case this is the right forum for it.
I was wondering whether it's possible to access the friends scrap
data. Something like which could give me the latest 5 or 10 scraps
details of my friends?
I've seen the code for listing of all the friends:
function response(dataResponse) {
var owner = dataResponse.get('get_owner').getData();
var friends = dataResponse.get('get_friends').getData();
var html = 'Friends of ' + owner.getDisplayName();
html += ':<br><ul>';
friends.each(function(person) {
html += '<li>' + person.getDisplayName() + '</li>';
});
html += '</ul>';
document.getElementById('message').innerHTML = html;
};
Is there somethings in the person object which gives that person's
scrap details?
Also is it actually possible to debug the code somehow, rather than
dumping out log information?
Thanks,
Nitin
--
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.