Leandro
unread,May 26, 2011, 1:20:34 PM5/26/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to orkut Developer Forum
Hi guys,
I have this function:
function enviaMensagem(pTitulo, pTexto, pIDAmigo)
{
var params = [];
params[opensocial.Message.Field.TITLE] = pTitulo;
params[opensocial.Message.Field.TYPE] =
opensocial.Message.Type.EMAIL;
var message = opensocial.newMessage(pTexto, params);
opensocial.requestSendMessage(pIDAmigo, message,
enviaMensagemCallBack);
}
been called like this:
enviaMensagem('Invite', 'My Message', "VIEWER_FRIENDS");
but the popup window don´t list the user's friends. I just got
"undefined" on the friends box.
Could you help me?
Thanks,
Leandro