I migrated my app to the facebook v4 plugin, and the “feed” dialog is not behaving as expected.
my code is:
local dialogOptions = {
name = “A message for the title”, – the bold blue text at the top
caption = “A caption”, – appears beneath the name
description = “A description”, – appears beneath the caption
picture = self.shareImagePath,
link = "https://apps.facebook.com/<our_app>/",
ref = tostring(shareTypeNumber)
}
facebook.showDialog(“feed”, dialogOptions)
In both Android and iOS, the caption field is ignored.
In iOS only, the name field is ignored.
This implementation is what used to work for the older plugin, and it conforms to Facebook’s docs:
https://developers.facebook.com/docs/sharing/reference/feed-dialog/v2.5
What do I need to do to make this work? Especially the name field?