应用程序在第一次使用时重定向到托管

应用程序在第一次使用时重定向到托管

本文介绍了facebook 应用程序在第一次使用时重定向到托管 url的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我根据教程使用 adobe flash builder 4.5 构建了一个 facebook 应用程序.它托管在heroku上.

I built a facebook apps from an tutorial with using adobe flash builder 4.5 . It is hosted on heroku.

此应用获取姓名、图像、生日和状态消息.它在屏幕上显示这些信息.您还可以将状态消息发布到您的 fb 帐户.如您所知,这是非常简单的应用.

This app gets name, image, birthday and status message . It displays these infos in the screen. And you can also post status message to your fb account. As you understand, it is very simple apps.

在第一次使用这个应用程序时,在权限对话框之后,url 被重定向到托管 url.

In the first usage of this app, after permission dialog, url is redirected to hosting url.

当你想再次使用它时,你可以在facebook.com上使用它

When you want to use it again, You can use it on facebook.com

你知道为什么在权限对话框后的第一次使用中它被重定向到托管 url.

do you have any idea why it is redirected to hosting url in the first usage after permission dialogs.

谢谢,塞尔贡

推荐答案

Selam Ceyhun,

Selam Ceyhun,

这是预期的行为,您可以为此做的很简单:

This is expected behavior, what you can do for this is simply:

<script type='text/javascript'>
if (window.top.location == window.location)
  window.top.location = 'https://apps.facebook.com/myapp';
</script>

就是这样.

这篇关于facebook 应用程序在第一次使用时重定向到托管 url的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-11 10:29