我已经尝试过了,但我的模块文件夹中没有 facebook!我已经安装了 fbconnect 0.6 和 fbgraph。但是我的 IDE 显示错误,告诉我找不到“play.modules.facebook.FbGraph”。
项目成员 erja...@gmail.com 的评论,2011 年 5 月 16 日
// [...]
import play.modules.facebook.FbGraph;
import play.modules.facebook.FbGraphException;
import play.modules.facebook.Parameter;
// [...]
public class Application extends Controller {
// [...]
public static void facebookLogin() {
try {
JsonObject profile = FbGraph.getObject("me"); // fetch the logged in user
String email = profile.get("email").getAsString(); // retrieve the email
// do useful things
Session.current().put("username", email); // put the email into the session (for the Secure module)
} catch (FbGraphException fbge) {
flash.error(fbge.getMessage());
if (fbge.getType() != null && fbge.getType().equals("OAuthException")) {
Session.current().remove("username");
}
}
redirect("/");
}
}
请帮帮我!!