2011-10-21 28 views

回答

0

鏈接是在應用程序設置中指定的Site URL。它必須是你的應用程序自己的鏈接,所以使用重定向功能重定向到帶有該標籤的Facebook頁面,而不是直接從iframe中解決。

1

我不認爲它可能會改變鏈接/文本的狀態'via',因爲這將始終是調用的應用程序。但是,您可以使用actions配置密鑰。

{ 
    method: 'feed', 
    link: 'https://developers.facebook.com/docs/reference/dialogs/', 
    picture: 'http://fbrell.com/f8.jpg', 
    name: 'Facebook Dialogs', 
    caption: 'Reference Documentation', 
    description: 'Using Dialogs to interact with users.', 

    // this is the part you want 
    actions: [{ 
     name: 'My App Page', 
     link: 'http://www.apppage.com' 
    }] 
} 

看起來像:

enter image description here

在這裏看到的文檔http://developers.facebook.com/docs/reference/dialogs/feed/

相關問題