0

我已经尝试过了,但我的模块文件夹中没有 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("/");
        }
    }

请帮帮我!!

4

1 回答 1

1

如果您还没有这样做,请尝试以下操作:

  1. 将你的模块添加到 dependencies.yml
  2. 播放 deps --sync
  3. 玩日食
  4. 在eclipse中删除并重新导入
于 2012-05-23T10:42:43.470 回答