How to use FB.uito create a field for sending a feed that gives the user several images to choose from? To create a popup, I use the following code:
FB.ui({
display: 'popup',
method: 'feed',
name: 'title here',
link: 'url.com',
picture: 'picturepath.jpg',
caption: 'caption text', // caption
description: 'long text'
}, callback);
Is it possible to add multiple images here?
source
share