如何创建添加了过滤器的REST API调用

我是REST API的新手,我想创建一个返回JSON对象的REST API调用

http://smlookup.dev/sec/products?search={"ABC.CP":"123A5“} - 在浏览器中运行良好,并提供JSON对象

我如何得到'?search = {“ABC.CP”:“12345”}'这个表达式在过滤记录时起作用

我正在使用的代码是

    String serverUrl="http://smlookup.dev/sec/products?search=";
    String search=URLEncoder.encode("={"ABC.CP":"12345"}");
    URL url = new URL(serverUrl+search);
        HttpURLConnection httpCon = (HttpURLConnection) url.openConnection();
        httpCon.setDoOutput(true);
        httpCon.setRequestMethod("GET");
        OutputStream out = httpCon.getOutputStream();

            //FAILS GIVING 405 STATUS CODE                       
        int responseCode = httpCon.getResponseCode();

所有帮助或建议都很有帮助

谢谢!


不知道它是否正常,但你不发送你的POST中的任何数据。 此外,你应该urlencode你的网址,引号不被接受那样。

URLEncoder.encode("={"Xref.CP":"XAW3123A5"}");
链接地址: http://www.djcxy.com/p/45659.html

上一篇: How to make REST API calls that have filter added

下一篇: API pagination best practices