Facebook开发者运行应用程序现在重定向到空白页面

时间:2014-03-27 05:35:13

标签: java facebook facebook-graph-api

在我的网站上有一个登录Facebook的选项,我们已经将Facebook开发者应用程序与生成的客户端ID和密码ID集成在一起。早些时候它工作正常,但从最后3-4个它已经停止工作。

现在,当我点击“使用FB登录”按钮时。它显示FB登录页面以填充凭据。填写我的ID和密码后,重定向和重定向到空白页面需要花费太多时间。

String url = "https://graph.facebook.com/oauth/access_token?client_id=" + client_id + "&redirect_uri=" + request.getScheme() + "://"
            + (String) Utils.getValueFromVS(ActionConstants.APP_URL, InsightValueStack.SESSION) + "/user/fbLogin.do&client_secret="
            + secret_id + "&code=" + code;

        URL url1 = new URL(url);
        connection = url1.openConnection();
        connection.setDoOutput(true);

        BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
        String line;

        while ((line = reader.readLine()) != null) {
            resp_Access_token.append(line);
        }
        reader.close();

我不知道它为什么会这样。

0 个答案:

没有答案