I have a client from hell... this is my problem:
I have an application hosted on: "foo.com", I post a message on the user wall, and then (obviously) it shows the site domain from where the app posted.
My client from hell ("bar.com") doesn't want the "foo.com" domain to be show in the wall post, like this:

My client has seen that when foursquare (mobile app) post to a users wall, the domain (foursquare.com) doesn't show up on the wall post, like this:

And he wants that because: "it has to be possible" (he kinda has a point, in his own evil way).
Is there any way to acomplish this? (he doesn't want to buy a secure domain/hosting)
I'm using this code:
$arguments = array(
'message' => 'my message',
'link' => FACEBOOK_PAGE_TAB_URL,
'description' => 'The description',
'picture' => FACEBOOK_LOGO
);$this->facebook->api('/me/feed', 'post', $arguments);