2011-10-21 27 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/

相关问题