0

良い一日。

Facebookとの連携を試みています。そのため、ユーザーが Facebook で自分のサイトにログインする必要があり、友人リストなどの情報を取得する必要があります。

私は次のことを行います:

@RequestMapping("/login")
    public void facebookLogin(HttpServletRequest request, HttpServletResponse response,String code) throws Exception
    {
        // ModelAndView model = new ModelAndView();
        // Facebook did not accept this user yet...
        if(code==null||code.equalsIgnoreCase(""))
        {
            String facebook_url = "https://www.facebook.com/dialog/oauth?";
            //                facebook_url+="client_id="+ Settings.getStringSetting("app_id");
            facebook_url+="client_id="+ "12849129...344";
            facebook_url+="&scope=publish_actions,friends_hometown,friends_status,friends_birthday";
            facebook_url+="&redirect_uri="+domain+ "/facebook/login";
            facebook_url+="&state="+ "DDFFRREEiiFF";
            response.setStatus(response.SC_MOVED_TEMPORARILY);
            response.setHeader("Location", facebook_url);
        }
        // Facebook accepted our user
        else
        {
            // Getting token to use facebook API
            String getTokenURL  = "https://graph.facebook.com/oauth/access_token?"
                    +"client_id="+ "128491....344"
                    +"&redirect_uri="+domain+ "/facebook/login"
                    +"&code="+code
                    +"&scope=publish_actions,friends_hometown,friends_status,friends_birthday"
                    +"&client_secret="+"fc160e2ab...235254240c";
            //friends_hometown
            String result = HTTPClient.sendHTTPRequestWithMethod(getTokenURL, "GET");
            String access_token = extractParams(result).get("access_token");
            // Get user...
            String get_user_url = "https://graph.facebook.com/me?access_token="+access_token;
            String user_str = HTTPClient.sendHTTPSRequestWithMethod(get_user_url,"GET");
            JSONProcessor proc = new JSONProcessor(user_str);
            System.out.println(proc.getStructure());
            HashMap<String,Object> user = proc.getStructure();
            String facebook_id = proc.getStructure().get("id").toString();
            DBRecord rec = dbProc.getUserByFacebookId(facebook_id);
            User u = new User();
            u.setValue("facebook_access_token",access_token);
            u.setValue("facebook_id",facebook_id);
            u.setValue("first_name",user.get("first_name"));
            u.setValue("last_name",user.get("last_name"));
            u.setValue("facebook_name",user.get("name"));
            u.setValue("birthday",user.get("birthday"));
            u.setValue("facebook_code",code);
            u.setValue("facebook_link",user.get("link"));
            u.setValue("gender",user.get("gender"));
            u.setValue("facebook_photo_url","https://graph.facebook.com/"+user.get("id")+"/picture?type=small");
            if(rec==null)
            {

                Long user_id = u.createInDB(dbProc);
                u.setValue("id",user_id);
            }
            else
            {
                u.setValue("id",rec.getID());
                u.saveToDB(dbProc);
            }
            setCookie(response,"facebook_code",code,86400000);
//            return new ModelAndView("/user/main_choose");
            response.setStatus(response.SC_MOVED_TEMPORARILY);
            response.setHeader("Location", "/user/main_choose");
        }
    }

したがって、ユーザーは最初にコードパラメーターなしで /login に来て、リダイレクトすることを期待しています。https://www.facebook.com/dialog/oauth 次に、彼らは Facebook にログインしようとしていて、 /login にリダイレクトする必要がありますが、「コード」パラメーターを追加するとhttps://graph.facebook.com/oauth/access_token、その「コード」で呼び出すことができます" 現在のユーザーの access_token を取得するパラメーター。そのトークンがあれば、必要なことはすべて実行できます。

したがって、自分のアカウント (開発者のアカウント) からログインしようとすると、うまくいきます。しかし、他のアカウント (たとえば友人) から実行しようとすると、Facebook のログイン フォームが表示されますが、リダイレクト後も「コード」パラメーターがありません。

なんで?これが私のアプリ構成です: サイト URL:http://109.173.122.47/ キャンバス URL: http://109.173.122.47/ Sabdbox モード: オン

4

1 に答える 1