服务器返回HTTP响应代码:400用于URL

时间:2013-09-12 18:45:54

标签: jsp exception query-string paging

在我的jsp页面中,我有包含不同查询字符串的链接。我主要用它来进行寻呼。

<a href='/test?page=1&code=${code}'>Page 1</a>
<a href='/test?page=2&code=${code}'>Page 2</a>
<a href='/test?page=3&code=${code}'>Page 3</a>

当我第一次加载到这个jsp页面时,一切正常。当我点击任何链接时,我将收到以下错误。

java.io.IOException: Server returned HTTP response code: 400 for URL: https://graph.facebook.com/oauth/access_token?client_id=xxx&scope=user_photos&redirect_uri=http://xxx.herokuapp.com/test&client_secret=xxx&code=xxx

我想知道这个错误是否与我的查询字符串相关联?有没有办法解决这个问题,因为我真的需要在我的jsp页面中进行分页?

在我的servlet里面......

@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp)
        throws ServletException, IOException {

    String code = req.getParameter("code");
    String page = req.getParameter("page");

    if(page == null){
        page = "1";
    }

    String MY_ACCESS_TOKEN = "";

    String redirect = "http://xxx.herokuapp.com/test";
    String en_redirect = URLEncoder.encode(redirect, "UTF-8");
    String en_code = URLEncoder.encode(code, "UTF-8");

    String authURL = "https://graph.facebook.com/oauth/access_token?client_id=xxx&scope=user_photos&redirect_uri=" + en_redirect + "&client_secret=xxx&code="
            + code;

    URL url = new URL(authURL);
    String result = readURL(url);
    String[] pairs = result.split("&");

    for (String pair : pairs) {
        String[] kv = pair.split("=");
        if (kv[0].equals("access_token")) {
            MY_ACCESS_TOKEN = kv[1];
        }
    } // end of for loop

1 个答案:

答案 0 :(得分:0)

您需要对参数redirect_uri的值进行HTML编码。这是将特殊字符转换为%后跟十六进制数字的过程。像空间变成%20。这对于编码作为第二个URL而非主要URL的&符号的编码非常重要。

 parameter = java.net.URLEncoder.encode( parameter );

对所有参数执行此操作的好习惯,特别是如果它们中可能包含一个&符号。