How can i specify the fb:explicitly_shared=true parameter in a batch request to publish several custom actions in Facebook with javascript api?
I have the following code for a batch request using Facebook Javascript API to post actions:
var args = {
batch: []
};
args.batch.push( { method: 'POST', relative_url: "me/myapp:assign",body : 'trait=http://mysite.com/trait2.php?to=Felipe' });
args.batch.push( { method: 'POST', relative_url: "me/myapp:assign",body : 'trait=http://mysite.com/trait2.php?to=Marielys' });
FB.api("/", "POST", args, function(batch_response) {
var body = JSON.parse(batch_response[0].body);
alert(body.id) ;
});
}
this works and posts the actions but i would like i can specify these actions are explicit so then can appear in the user's wall... any suggestion?