我有这段代码使用 Facebook C# API v5 并在 AJAX 调用上运行以确定用户是否经过身份验证:
// Make sure user is logged into Facebook and authroized this application
if (!FacebookWebContext.Current.IsAuthenticated() ||
!FacebookWebContext.Current.IsAuthorized(new[] { "email" }))
{
result.ResultCode = BasicResultCode.NotAuthorized;
return result;
}
var fbuid = FacebookWebContext.Current.UserId;
在 v6 中,Facebook.Web 命名空间不存在,而且 FacebookWebContext 也无处可寻。我用什么代替上面的代码?