简体   繁体   中英

Default Text missing during facebook share in Iphone 5

In an App developed we are facing problem when sharing some feature of the App in Facebook. The default text that we intend to share does not seem to appear. However there is no issue when there is an image present to be shared by the Facebook application.

We have implemented the Facebook integration, but things don't give us the desired outcome. Refer to attached image for more details.

在此处输入图片说明

Because Facebook has deprecated the functionality to pre-fill the caption text programmatically. Below is the reference:

https://developers.facebook.com/docs/apps/review/prefill

I also faced the same problem with one of my app last month and I came to this conclusion.

Hope this helps!

you can use FBSDKShareLinkContent with FBSDKSHAREKIT

 FBSDKShareLinkContent *content = [[FBSDKShareLinkContent alloc] init];
 content.contentTitle = // HERE YOUR TEXT TITLE
 content.contentDescription = // HERE YOUR TEXT / DESCRIPTION;
 content.imageURL = // YOUR IMAGE URL;
 [FBSDKShareDialog showFromViewController:(UIViewController *)self.delegate
                             withContent:content
                                delegate:self];

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM