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