Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.