API开发实践 接受url请求
Posted 知止
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了API开发实践 接受url请求相关的知识,希望对你有一定的参考价值。
先简单理解GET请求与POST请求的区别
在浏览器地址栏输入
http://服务器地址:服务器端口/文件路径
即可访问目的文件或服务
如果带有参数就以
?参数名=参数值[&参数名=参数值].*
的形式添加到请求中,再在服务器中用request.getParameter()方法取出。
代码:url: http://localhost:8080/APITest/getMap.java?shipperCode="*"&logisticCode="*"
1 protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { 2 // TODO Auto-generated method stub 3 String shipperCode = request.getParameter("ShipperCode"); 4 String logisticCode = request.getParameter("LogisticCode"); 5 6 }
改写了POSTt方法,
以上是关于API开发实践 接受url请求的主要内容,如果未能解决你的问题,请参考以下文章
Spotify:使用不接受重定向 url 的 web api 登录