react-native-social-share icon indicating copy to clipboard operation
react-native-social-share copied to clipboard

Unable to share images or view text on iOS

Open RockinRonE opened this issue 8 years ago • 1 comments
trafficstars

The following code produces a blank screen:

facebookShare = () => {
		shareOnFacebook({
        'text':'Global democratized marketplace for art',
        'link':'',
        'imagelink': 'https://storage.googleapis.com/bookshelf-today/august/AUG-16.png',
      },
      (results) => {
        console.log(results);
      }
    );
  }

The text and imagelink fields don't seem to work.

RockinRonE avatar Aug 16 '17 15:08 RockinRonE

Hey @RockinRonE

Facebook has changed what they allow the sharing modal to load with. Now they only allow links. Then the user will have to write their own text and pick their own image.

doefler avatar Aug 17 '17 18:08 doefler