question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

How to share the quote/text message on Facebook?

See original GitHub issue

Ask your Question

Hi! firstly, thanks a lot for this great module. I am trying to share the playstore link of my application and some text along with the url. I am able to share the url but I am not able to share the text. I tried to share the text in quote key but it is not working for the Facebook share. My code for the Facebook share is:

Share.shareSingle({
                    title: 'shareVia',
                    message: 'I am message',
                    caption: 'I am a caption',
                    url: 'https://www.google.com',
                    social: Share.Social.FACEBOOK,
                    contentDescription: 'Facebook sharing is easy!',
                    quote: 'I am quote',
                    type: 'url',
});

Can anyone please help me in this and guide me how to share the text and the url on Facebook?

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Reactions:3
  • Comments:13

github_iconTop GitHub Comments

15reactions
ajaykumar97commented, Jul 7, 2020

For now, I have used the Facebook SDK for sharing the text on Facebook. I am sharing the text as a quote:

import {ShareDialog} from 'react-native-fbsdk';

const shareLinkContent = {
      contentType: 'link',
      contentUrl: 'https://www.google.com',
      quote: 'I am a message',
};
ShareDialog.show(shareLinkContent);
4reactions
nadercojocommented, Dec 2, 2020

Guys it is in their Conditions and Terms you cannot share any text till the user types it on FB fields 😃 stupid I know

Read more comments on GitHub >

github_iconTop Results From Across the Web

How to send quoted replies in Facebook Messenger - CNET
To use it on your phone, open a conversation and then long-press or swipe to the left or right on a chat bubble....
Read more >
You can now share quoted text directly to Facebook - The Verge
Facebook will paste the text into a new post in block quote format, and include a full preview of the original URL.
Read more >
Facebook lets you share quoted text in a click - Mobilescout.com
Facebook is now providing a dedicated "share quote" button to the users so that they can share their favourite quotes with a click....
Read more >
Facebook lets you share quoted text with a click - Engadget
Rather than having to copy and paste a snippet of text across apps, you'll be able to simply highlight the words you want...
Read more >
Use Quote Replies in Facebook Messenger to Prevent ...
Text conversations can get confusing fast. In the time it takes to type up a response to your friend, they can send you...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found