I’ve implemented the facebook.showDialog() function and it’s working 100% in Android. yay.
However, the same code in iOS behaves differently. The share dialog opens as it should, and the link is there, however, the description field doesn’t appear. It’s just an empty text field. Is this a limitation of iOS? Or a bug?
Here’s my code snippet:
local facebook = require( "plugin.facebook.v4a" ) local shareParams = { link = "https://MissionMeApp.com/", title = "Mission Me game", description = "I've been having a great time playing the Mission Me mobile game! Come join me for free: #MissionMe" } facebook.showDialog( "link", shareParams )