对话框来自页面,而不是应用程序

发布于 2024-12-11 09:53:06 字数 140 浏览 0 评论 0原文

可以将对话框提要应用程序链接链接到页面,而不是应用程序。或者这样做应用程序重定向到页面?

在此处输入图像描述

提前谢谢您...:-)

It it possible to link the dialog feed app-link to a page, rather than a app. Or do so the app redirects to the page??

enter image description here

Thank you in advance... :-)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

日久见人心 2024-12-18 09:53:06

我认为您不可能更改标有“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'
    }]
}

看起来像:

在此处输入图像描述

请参阅此处的文档 http://developers.facebook.com/docs/reference/dialogs/feed/

I don't think its possible for you to change the link/text where it states 'via' as this will always be the application from which the call was made. However you can make use of the actions config key.

{
    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'
    }]
}

Will look like:

enter image description here

See documentation here http://developers.facebook.com/docs/reference/dialogs/feed/

花开浅夏 2024-12-18 09:53:06

该链接是应用程序设置中指定的站点 URL。它必须是您的应用程序拥有的链接,因此请使用重定向功能通过选项卡重定向到 Facebook 页面,而不是直接重定向到 iframe 之外的解决方案。

The link is the Site URL specified in the application settings. It have to be a link own by your application, so use a redirect functionality to redirect to the Facebook page with the tab, rather than directly to the solution out of the iframe.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文