Click here to Skip to main content
15,890,438 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Here is my code using which I am able to post a single image from my website. But I want to share multiple images (creating an album of images) when I click on "share with Facebook" button

function ShareImage() {
    FB.ui({
        display: 'popup',
        method: 'share',
        picture: 'http://MyDomainAddress/Upload/Event/20162373.jpg',
    }, function (response) {
        alert(response);
    });

    return false;
}

How do I share multiple images?
Posted
Updated 8-Jan-16 17:44pm
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900