I need to send a link using the FB Send Dialog with custom name and description.
FB.ui({
method: 'send',
name: 'Custom name',
display: 'popup',
link: 'http://link.com',
to: facebookUserId,
description: 'Custom desc.'
}
Despite setting a custom name and description, the Send Dialog is not displaying it and instead using the title and "meta" description from the link. It was working fine when I first used it 3 weeks ago and I haven't made any changes since then.
Any help is greatly appreciated. Thank you.