我正在尝试使用 Facebook API,restfb,但我有一个烦人的问题一直存在。代码如下所示:
FacebookClient fc = new DefaultFacebookClient(TOKEN, Version.VERSION_2_0);
User user = fc.fetchObject("me", User.class);
System.out.println(user.getName());
DefaultFacebookClient 中存在方法“fetchObject”,如下所示:
public <T> T fetchObject(String object, Class<T> objectType, Parameter... parameters)
但是 Eclipse 抛出一个编译错误说:
The method fetchObject(String, Class, Parameter[]) in the type FacebookClient is not applicable for the arguments (String, Class<T>)
任何想法可能是什么问题?