我开发了一个画布应用程序。我可以通过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 :(得分:0)
请检查您的应用设置中是否禁用了沙盒模式。如果启用它,那么只有管理员才能看到。禁用此功能,以便其他用户也可以查看您的应用。