我开发了一个画布应用程序。我可以通过 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