我正在尝试按照本指南在我的网站上使用Facebook:
http://www.deviantcoders.com/articles/aspnet-membership-and-role-provider-facebook-connect-part-2
但是当我尝试使用API api = new API();
时,找不到类:
The type or namespace name 'API' could not be found (are you missing a using directive or an assembly reference?)
我错过了哪个程序集,我已添加:
Facebook.Web
Facebook.Web.Mvc
答案 0 :(得分:1)
对于任何有兴趣的人,我发现框架已经改变了。现在你需要以这种方式初始化它:
public ConnectSession _connectSession _connectSession = new ConnectSession(APPLICATION_KEY, SECRET_KEY);
public Api _facebookAPI = new Api(_connectSession);
资料来源:http://facebook.claritycon.com/help/ - > Asp.net开发 - >连接
答案 1 :(得分:0)
api已经改变了。现在facebook提供图形api。所以类api不存在。