我是REST API的新手,我想进行REST API调用,返回一个JSON对象
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();
所有帮助或建议都有帮助
谢谢!
答案 0 :(得分:0)
不确定它是否正常,但您不会在POST中发送任何数据。 此外,你应该urlencode你的网址,不接受倒置的逗号。
URLEncoder.encode("={\"Xref.CP\":\"XAW3123A5\"}");