facebook/facebook-android-sdk

Faecbook ShareLinkContent with setQuote() is not wirking with large number of text while post

GauravCreed opened this issue · 0 comments

Checklist before submitting a bug report

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);
        }