これを試してみましたが、モジュールフォルダーに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("/");
}
}
これで私を助けてください!!