我的应用程序名称在 Facebook 的画布应用程序代码中显示不正确
我对 Facebook 应用程序代码有一些疑问,我已经在 Facebook 开发论坛上提出了这个问题,但已经过去几天了,但没有结果。你看,我开发了我的第一个 Facebook 应用程序,名为 MagMeUp 但每次我使用它时,我的我的屏幕右上角的应用程序代码显示了不同的名称。我在我兄弟的 Facebook 帐户上测试过,结果是一样的。但每当我改变它的名字时,例如。在末尾添加“z”,如“MagMeUpz”,它按原样显示。但当只有“MagMeUp”时,它会显示不同的名称。
I have some question regarding fb app ticker, I already ask this question on facebook development forum but its been a few days now and to no avail. You see, I have develop my very first facebook app called MagMeUp but every time I use it, my app ticker on the top right corner of my screen is showing a different name. I tested it on my brothers fb account and its just the same. But whenever I change its name, eg. adding "z" at the end like "MagMeUpz" it shows as it is. But when only "MagMeUp" it shows a different name.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我建议使用 Facebook Linter 刷新应用程序上的缓存,看看是否有帮助。
http://developers.facebook.com/tools/debug
另外请确保您正在使用正确的appid和秘密在您的应用程序中。
I would suggest using the Facebook Linter to refresh the cache on your application and see if it helps.
http://developers.facebook.com/tools/debug
Also make sure that you are using the correct appid and secret in your app.
据我所知,这似乎没有在任何地方记录(至少我可以找到),并且 FB 不会将其用于任何其他显示目的,但股票代码名称似乎是从 iframe 的
< 中提取的;title>
元素。This doesn't seem to be documented anywhere (at least that I could find) and FB doesn't use this for any other display purposes as far as I know, but the ticker name seems to be pulled from the iframe's
<title>
element.如果您的应用程序网址为“ http://apps.facebook.com/APPNAME/ ”
facebook 将访问此网址以获取元信息,(og:标题,og:描述......)
我猜它会缓存元信息,
使用调试工具刷新缓存似乎不起作用,
但您可以修改您的页面,也许:
http://apps.facebook.com/APPNAME/index.php php,
只需更改index.php的内容,所有的股票代码似乎都会被刷新!
如果这不起作用,请尝试添加
if your app url is " http://apps.facebook.com/APPNAME/ "
facebook will visit this url to get the meta info , (og:title,og:description....)
i guess it will cache the meta info,
use debug tool flush the cache seems not work,
but you can modify you page, maybe:
http://apps.facebook.com/APPNAME/index.php,
just change the index.php's content ,and all ticker seems flushed !!!
if this not work, try add