I have this code that was using Facebook C# API v5 and was running on a AJAX call to figure out if user is authenticated:
// 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;
In v6, Facebook.Web namespace doesn't exist and FacebookWebContext is nowhere to be found. What do I use instead for the above code?