Share API does not share message with Facebook

Viewed 2110

I am using Share API in React native as follows.

handleSharePress() {
        Share.share({ 
            message: `I scored ${this.score}% in React Quiz: https://play.google.com/store/apps/details?id=com.vijayt.reactquiz`
        }, {
            dialogTitle: 'Share my score'
        });
    }

The Share works fine in Android with Twitter. But with Facebook, I am not seeing the message text in the share.

Share has text in Twitter: enter image description here

Share does not have text in Facebook (only URL): enter image description here

1 Answers
Related