简体   繁体   中英

Hyperlinking of text in facebook with Social Framework

I was trying to hyperlink only specific part of string to a url with the below code on Facebook

SLComposeViewController *fbController=[SLComposeViewController composeViewControllerForServiceType:SLServiceTypeFacebook];
NSString *strURL =@"http://ec2-54-215-150-229.us-west-1.compute.amazonaws.com/TripScope/printguide/25157";
NSString *strHtml=[NSString stringWithFormat:@"<a href=%@>Booked by me</a> \n TripAgency",strURL];
[fbController setInitialText:strHtml];

With the above code, it was showing the html text on facebook.

How can i fix this? any idea?

You cannot post HTML to Facebook.

You might be able to pull in metadata from your URL using Open Graph tags .

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