Multiple Facebook images using FB.ui?

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?

+4
source share

Source: https://habr.com/ru/post/1542710/


All Articles