0

我开发了一个画布应用程序。我可以通过 Facebook 访问该应用程序,但其他人看不到它并卡在此页面。该应用程序是实时的。

ASP.NET MVC 4。

我的 permissions.vbhtml: (如果你想要其他文件请告诉我)

    @Imports Microsoft.AspNet.Mvc.Facebook
    @ModelType FacebookRedirectContext
    @Code
    ViewData("Title") = "Required Permissions"
    End Code

    @If Model.RequiredPermissions.Length > 0
    @<h3>You need to grant the following permission(s) on Facebook to view this 
    page:</h3>
    @<ul>
    @For Each permission in Model.RequiredPermissions
    @<li>@permission</li>
    Next
    </ul>
    @<a class="buttonLink" href="@Html.Raw(Model.RedirectUrl)" target="_top">Authorize 
    this application</a>
    End If
4

1 回答 1

0

please check that the sandbox mode is disabled or not in your app settings. If its enabled then only an admin can see that. Make it disabled so other users also view your app.

于 2013-05-02T06:56:50.563 回答