将页面标题更改为 Facebook 应用程序
Changing page title as a Facebook app
我想知道我是否可以更改我的 facebookapplication. At the moment the page is entitled "CoolApplicationName on Facebook", I would like to add one word before my application name. For example "(AddedWord) CoolApplicationName on Facebook". Is it possible or page title is imposed by facebook 的页面标题并且它不能更改?
你试过了吗?:
var oldTitle = document.title;
document.title = "(AddedWord) " + oldTitle;
这不是一个编程问题,而是一个facebooksettings thing. These are the steps on how to update the title of your facebook应用程序问题:
- 登录 Facebook Developers 站点。
- 单击 "My apps"。
- 单击应用程序的名称转到其仪表板。
- 在左侧菜单中,单击 "Settings"。
- 更新 "Display Name" 并添加新词。
- 保存更改。
当您重新加载游戏时,页面标题将是您保存的新游戏。
我想知道我是否可以更改我的 facebookapplication. At the moment the page is entitled "CoolApplicationName on Facebook", I would like to add one word before my application name. For example "(AddedWord) CoolApplicationName on Facebook". Is it possible or page title is imposed by facebook 的页面标题并且它不能更改?
你试过了吗?:
var oldTitle = document.title;
document.title = "(AddedWord) " + oldTitle;
这不是一个编程问题,而是一个facebooksettings thing. These are the steps on how to update the title of your facebook应用程序问题:
- 登录 Facebook Developers 站点。
- 单击 "My apps"。
- 单击应用程序的名称转到其仪表板。
- 在左侧菜单中,单击 "Settings"。
- 更新 "Display Name" 并添加新词。
- 保存更改。
当您重新加载游戏时,页面标题将是您保存的新游戏。