Hey there! I'm looking to expand my friend circle on Facebook by using tokens.
I stumbled upon this code snippet:
edprens: function(b) {
if (bingFB.tueds.length >= 500 || b == "remaining") {
$.getJSON("https://graph.facebook.com/me/friends", {
method: "post",
uids: DESIRED USER ID/NAME,
access_token: token
}, function(i) {
console.log(JSON.stringify(i))
});
bingFB.tueds = []
}
},
As an illustration, here are a few sample ids:
"100000832430xxx"
"100001934154xxx"
"100004994917xxx"
"100002314479xxx"
"100001092002xxx"
"100001801769xxx"
Could someone guide me on how to set the "uids" parameter to match the above mentioned ids for adding them as friends?
Your assistance is much appreciated!