如何在Facebook消息中添加“个人资料链接”使用API​​?

How to put inside Facebook message feed "profile link" used API ?

For now I have prepared this code:

$request = $this->fb->post('/'.$this->pageId.'/feed', [
    'message' => "
        I'ves been testing my IQ! @facebook 
\t
        #test #testt #testowy
\t                
        http://www.example.com
    ",
    'name' => 'Some title',
    'caption' => 'some caption',
    'link' => 'http://www.example.com',
    'actions' => json_encode(array('name'=>'Some name','link'=>'http://www.example.com')),
    'description' => 'Some description @example',
    'picture' => 'http://www.example.com/image.jpg'
]);    

published post view:

published post view (image)

It looks nice but I'd like change @facebook to link to profile link to look like this:

published post view after changes (image)

Some advice, how to make this?