我正在试用 ASP.Net MVC 4 Facebook 模板和“框架”,我发现很难在 Internet 上获得任何帮助,除了“生日应用程序”示例。
我正在构建一个带有“喜欢门”的简单 Facebook 应用程序,这意味着人们只有在“喜欢”某个页面时才能访问该应用程序。
我的想法是在控制器中检查用户是否“喜欢”了粉丝页面,如果没有,将他重定向到“LikeFirst”视图。
这是控制器,直接来自模板:
[FacebookAuthorize("email", "user_photos")]
public async Task<ActionResult> Index(FacebookContext context)
{
if (ModelState.IsValid)
{
var user = await context.Client.GetCurrentUserAsync<MyAppUser>();
if(//how check the user has liked the fan page)
{
return View(user);
}
else
{
return View("LikeFirst");
}
}
return View("Error");
}
根据我在示例中得到的信息,框架实际上使用“MyAppUser”对象来构造 Facebook 查询。
这是示例应用程序中使用的类型。
public class MyAppUser
{
public string Id { get; set; }
public string Name { get; set; }
public string Email { get; set; }
[JsonProperty("picture")] // This renames the property to picture.
[FacebookFieldModifier("type(large)")] // This sets the picture size to large.
public FacebookConnection<FacebookPicture> ProfilePicture { get; set; }
[FacebookFieldModifier("limit(8)")] // This sets the size of the friend list to 8, remove it to get all friends.
public FacebookGroupConnection<MyAppUserFriendSimple> Friends { get; set; }
[FacebookFieldModifier("limit(16)")] // This sets the size of the photo list to 16, remove it to get all photos.
public FacebookGroupConnection<FacebookPhoto> Photos { get; set; }
}
从 Facebook 文档中,我应该能够通过对 /PROFILE_ID/likes/PAGE_ID 执行 HTTP GET 来检查这一点,但我应该如何使用 ASP.Net MVC Facebook 框架来做到这一点?我可以在 MyAppUser 类中更改什么吗?这是完全不同的东西吗?
谢谢!