Using the Facebook JS SDK(FB.ui), is it possible to supply a list of facebook user id's using the 'apprequest' method?
Looking at the docs I see you can set "to:", however I am not sure if this allows you to send a json array of user id's or not. Any help is appreciated!
FB.ui({
method: 'apprequests',
to:[list of ids?],
message: 'You should learn more about this awesome game.',
data: 'tracking information for the user'
});
I either need to send it to a specific list users or have the boxes prechecked in friend selector if that is possible.