2013-05-02 70 views
0

我开发了一个画布应用程序。我可以通过Facebook访问应用程序,但其他人无法看到它并卡在此页面中。该应用程序是活的。为什么用户无法访问我的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 

回答

0

请检查该沙盒模式被禁用或不在您的应用程序设置。如果它启用,那么只有管理员可以看到。将其禁用,以便其他用户也查看您的应用。

相关问题