I need invite users to my group i tried with javascript, this is the code
var invitado= new Array();
invitado["member"]=("100003269899519");
FB.api("/528621163869329/members", "POST", invitado,
function(response) {
if (!response || response.error) {
alert("error");
} else {
alert("exito");
}
}
);
and returns me the following error
"(#194) Requires all of the params: member
Please help me.