在 Facebook 应用程序中,链接如何与应用程序链接关联

发布于 2024-12-21 09:49:54 字数 322 浏览 1 评论 0原文

假设我有 facebook 应用程序,其画布 URL 为 http://localhost/app/,并且此页面包含一个 链接go,当它显示在 facebook 的应用程序页面中时,它向我显示链接为 http://localhost/app/a.php,如何使其与我的相关Facebook 应用程序,这样会显示http://apps.facebook.com/testappasdf/a.php 而不是 http://localhost/app/a.php

Suppose I have facebook apps, and its canvas url is http://localhost/app/, and this page contains a link as <a href='/a.php'>go</a>, when this show in apps page in facebook then it shows me the link as http://localhost/app/a.php, how make it related with my facebook apps, such it would show http://apps.facebook.com/testappasdf/a.php instead of http://localhost/app/a.php

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

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

发布评论

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

评论(1

挽容 2024-12-28 09:49:54

在您的配置文件中创建一个变量或常量,并为其分配应用程序地址的值。例如,在您的配置文件中,您定义一个新常量

define('APPURL','http://apps.facebook.com/testappasdf');

,然后在创建链接的位置,我们将其设置为这样 测试链接

In your configuration file make a variable or constant and assign it a value of your application address. For example in your config file you define a new constant

define('APPURL','http://apps.facebook.com/testappasdf');

then where you create a link we make it like this <a target='_top' href="<?php echo APPURL?>/a.php">Test Link</a>

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