移动版 Facebook 应用程序进入重定向循环

发布于 2024-12-18 10:15:12 字数 412 浏览 3 评论 0原文

我使用 C# SDK 开发了一个 Facebook 应用程序,它运行良好。现在我也想在手机上启用它,所以我尝试将“移动网址”设置为与我的画布网址(这是一个 cloudapp.net 地址)相同的网址。但是,当我尝试从移动设备访问它时,它似乎进入了涉及我的画布 url、apps.facebook url 和 m.facebook/apps url 的重定向循环。有时它会脱离循环,我收到 Facebook 错误消息:“该应用程序的移动版本不可用,因为它配置错误。它似乎陷入了重定向循环。”

我认为这可能与 webconfig 文件中的 facebooksettings 指定我的 cloudapp 页面应重定向到 apps.facebook.com 页面,然后重定向到移动 URL 等事实有关。有人可以告诉我如何解决这个问题 - 我只希望我的移动网址与我的画布网址相同。

谢谢。

I have developed a Facebook app using the C# SDK and it is working fine. Now I want to also enable it on mobiles, so I tried to set the "mobile url" to the same one as my canvas url (which is a cloudapp.net address). However, when I try to access it from a mobile, it seems to go into a redirect loop involving my canvas url, the apps.facebook url and the m.facebook/apps url. Sometimes it goes out of the loop and I get the facebook error message saying : "the mobile version of the app is unavailable because it is misconfigured. It appears to be caught in a redirect loop."

I think it may have to do with the fact that the facebooksettings in the webconfig file specify that my cloudapp page should redirect to the apps.facebook.com page, which then redirects to the mobile url and so on. Can someone tell me how to solve this problem - I just want my mobile url to be the same as my canvas url.

Thanks.

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

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

发布评论

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

评论(1

刘备忘录 2024-12-25 10:15:12

如果请求来自移动设备,请添加额外的逻辑

对于 v6、

var fb = new FacebookClient();
var desktopLoginUrl = fb.GetLoginUrl(new { .... });
var mobileLoginUrl = fb.GetLoginUrl(new { ...., mobile = true });

对于 v5,

var urlBuilder = new UrlBuilder(oauthClient.GetLoginUrl(...));
urlBuilder.Host = "m.facebook.com";
var loginUrl = urlBuilder.Uri;

If the request is from mobile add extra logic

For v6,

var fb = new FacebookClient();
var desktopLoginUrl = fb.GetLoginUrl(new { .... });
var mobileLoginUrl = fb.GetLoginUrl(new { ...., mobile = true });

For v5,

var urlBuilder = new UrlBuilder(oauthClient.GetLoginUrl(...));
urlBuilder.Host = "m.facebook.com";
var loginUrl = urlBuilder.Uri;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文