Facebook Plugin ShareLink's description broken?

Hello,

I’m having an issue where I’m using the official Facebook plugin for iOS/Android, but it fails to post the description even though it’s showing that it will post the description. I’ve tried using a description that is the single word “Test” just to make sure it isn’t breaking due to special characters. I’ve also tried using something more common like apple.com where it shows that it will post my description, then when I go to Facebook it shows the description from apple.com instead.

Android from within the application. Notice it shows “I just planked for…”

And here’s what actually shows on Facebook. Notice the description doesn’t show at all.

3157788--240225--Screenshot from 2017-07-24 17-13-11.png

Also, here’s an example of my code:

string messageString = "I just planked for {1} and scored {0} points using Stealth. Check it out!";
System.Uri uri = new System.Uri("https://www.facebook.com/gameyourcore/");
System.Uri imageUri = null;
string timeStr = ScoreDataParser.FormatDurationWithMinutesAndSeconds (shareScore.duration);
FB.ShareLink(uri, "Stealth - Game Your Core", string.Format(messageString, score /* string */, timeStr), imageUri, ShareResultCallback);

Finally, here’s a link to the official SDK documentation. Thanks!

Thanks for any help,
Nathan

As I understand it Facebook have deprecated that functionality now but have not changed the SDK yet. I believe you now have to use og markup at your link to specify the relevant parameters.

1 Like

Thanks, that is a huge help and explains why it literally was working a week ago and now isn’t :slight_smile:

I have also responded to someone here Facebook FB.ShareFeed not posting image linked - Unity Engine - Unity Discussions

After having to spend a few days fixing the share feature on a game that we had out from work.