2013-05-02 45 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

請檢查該沙盒模式被禁用或不在您的應用程序設置。如果它啓用,那麼只有管理員可以看到。將其禁用,以便其他用戶也查看您的應用。

相關問題