Faecbook ShareLinkContent with setQuote() is not wirking with large number of text while post
GauravCreed opened this issue · 0 comments
GauravCreed commented
Checklist before submitting a bug report
- I've updated to the latest released version of the SDK
- I've searched for existing Github issues
- I've looked for existing answers on Stack Overflow, the Facebook Developer Community Forum and the Facebook Developers Group
- I've read the Code of Conduct
- This issue is not security related and can safely be disclosed publicly on GitHub
Java version
VERSION_1_10
Android version
14
Android SDK version
34
Installation platform & version
Manual
Package
Share
Goals
Trying to share my application link with large number of text as facebook post.
Expected results
While text and link is post on facebook platform, text getting cut, need to show all text while posting on facebook.
Actual results
No stack trace is require for generating this issue.
Steps to reproduce
No response
Code samples & details
String shareText = strVerseText;
ShareLinkContent content = new ShareLinkContent.Builder()
.setContentUrl(Uri.parse("https://play.google.com/store/apps/details?id=" + getPackageName()))
.setQuote(shareText)
.build();
ShareDialog shareDialog = new ShareDialog(this);
if (ShareDialog.canShow(SharePhotoContent.class)) {
shareDialog.show(content);
}