I have been updating status messages from my site to my clients facebook pages or fan pages using the PHP sdk like this
$facebook = new Facebook('facebookApiKey', 'facebookAppSecret');
$facebook->api_client->users_setStatus($statusText, $facebookUid);
When the status is posted and it shows up in my news feeds, I only have an options to 'Comment' or 'Like' that post, but not to 'Share' it like other updates do http://grab.by/6Juz.
I'm not sure if that is even possible with users_setStatus? is there anything I need to change in my canvas page to allow this link to show up? is there any other api call that I need to use before/after the status update to enable this link?
Any suggestion is greatly appreciated.