在 Facebook 应用程序中,链接如何与应用程序链接关联
假设我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的配置文件中创建一个变量或常量,并为其分配应用程序地址的值。例如,在您的配置文件中,您定义一个新常量
,然后在创建链接的位置,我们将其设置为这样
测试链接
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
then where you create a link we make it like this
<a target='_top' href="<?php echo APPURL?>/a.php">Test Link</a>