I use the c# SDK for Facebook. I'm trying to access user details in my Facebook application, but on this line:
var fb = new FacebookOAuthClient { AppId = "******", AppSecret = "******" };
I get the error:
Error 48 The type or namespace name 'FacebookOAuthClient' could not be found
(are you missing a using directive or an assembly reference?)
I have the references:
Facebook
Facebook.Web
Facebook.Wen.Mvc
is there a missing reference? or any other ideas to solve that problem?
Ctrl+.than most of the time (if you included the right assemblies) it will popup a menu to include the rightusing– Silvermind Aug 19 '12 at 18:59