i have publishing to wall via JS SDK. It works fine, but recently it started doing problems. Problem is in properties. It doesn't make text hypertext, but shows the link
example:
properties: [{text: "Best fruit", href: "MY APP LINK"}]
But in dialog for publishing it shows instead of "Best Fruit" as link to "MY APP LINK" it shows "MY APP LINKBest fruit".
There is full code of publishing:
function showbox()
{
FB.ui(
{
display: 'iframe',
method: 'feed',
name: '<?php echo $mes; ?>',
link: '<?php echo $canvas; ?>',
caption: '<?php echo $mes; ?>',
description: ' ',
properties: <?php echo $_SESSION['properties']; ?>,
redirect_uri: '<?php echo $fbconfig['base'];?>'
});
}
How to make it hypertext instead of plain text?