同学,你是否有经历过等接口等到想打人的地步!不怕,用 Node.js 很快就能自己写出接口,想怎样测就怎样测!
开发工具和环境配置,请谷歌度娘:
IDE:https://code.visualstudio.com/
node:https://nodejs.org/en/
win10 下 node 环境配置:nodejs zip压缩版安装与配置
PS:想想好像不一定要 IDE,直接用文本编辑器写代码,然后改成.js结尾,运行该文件就行(node xxx.js) ~
用 Node.js 写测试接口,运行起来:
// 导入http模块
var http = require("http");
// 创建 http server,并传入回调函数,回调函数接收request和response对象
http.createServer(function (request, response) {
// 获得http请求的method和url
console.log(request.method + ': ' + request.url);
// 定义了一个post变量,用于暂存请求体的信息,每当接收到请求体数据,累加到post中
var post = "";
request.on("data", function (chunk) {
post += chunk;
});
// 在end事件触发后,通过querystring.parse将post解析为真正的POST请求格式,然后向客户端返回。
request.on("end", function () {
console.log("——————请求结束 post = " + post.toString() + "——————");
// 将http响应200写入response, 同时设置Content-Type
response.writeHead(200, { "Content-Type": "text/plain;charset=utf8" });
response.write("{code:200,msg=\"请求成功\"}");
response.end();
});
}).listen(8888);// 让服务器监听8888端口
console.log("——————服务器启动——————");
写个 Android demo:
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;
import androidx.appcompat.app.AppCompatActivity;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.HttpURLConnection;
import java.net.URL;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final TextView textView = (TextView) findViewById(R.id.tv);
textView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
textView.setText("开始请求");
new Thread(new Runnable() {
@Override
public void run() {
final String result = doPost("user_name=HaHa&submission_date=" + System.currentTimeMillis());
runOnUiThread(new Runnable() {
@Override
public void run() {
textView.setText(result);
}
});
}
}).start();
}
});
}
//post请求
public static String doPost(String json) {
try {
// 创建URL对象,设置请求url
URL url = new URL("http://xxx.xxx.xxx.xx:8888/test");// cmd:ipconfig
// 调用URL对象的openConnection( )来获取HttpURLConnection对象实例
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
// 请求方法为POST
conn.setRequestMethod("POST");
// 设置连接超时为5秒
conn.setConnectTimeout(5000);
// 允许输入输出
conn.setDoInput(true);
conn.setDoOutput(true);
// 不能缓存
conn.setUseCaches(false);
// 至少要设置的两个请求头
// 设置头部信息
conn.setRequestProperty("headerdata", "headerdata");
// 一定要设置 Content-Type 要不然服务端接收不到参数
conn.setRequestProperty("Content-Type", "application/Json; charset=UTF-8");
// 输出流包含要发送的数据,要注意数据格式编码
OutputStream op = conn.getOutputStream();
// 输出流向服务器写入数据
op.write(json.getBytes());
// 服务器返回东西了,先对响应码判断
String result = null;
if (conn.getResponseCode() == 200) {
// 用getInputStream()方法获得服务器返回的输入流
InputStream in = conn.getInputStream();
// 流转换为二进制数组,read()是转换方法
byte[] data = new byte[1024];
in.read(data);
result = new String(data, "UTF-8");
in.close();
return result;
} else {
return String.valueOf(conn.getResponseCode());
}
} catch (Exception e) {
e.printStackTrace();
return e.getMessage();
}
}
}
过程中遇到的问题:
1、必须滴:
<uses-permission android:name="android.permission.INTERNET"/>
2、Android 高版本联网失败报错:Cleartext HTTP traffic to xxx not permitted
《Android高版本联网失败报错:Cleartext HTTP traffic to xxx not permitted解决方法》
<application
android:usesCleartextTraffic="true"
... ...>
... ...
</application>
3、java.net.SocketTimeoutException: failed to connect to /xxx.xxx.xx.xx (port xxx) after xxx
《java.net.SocketTimeoutException: failed to connect to /192.168.1.104 (port 80) after 10000ms》
移动端和开发电脑要在同个局域网,然后关闭防火墙
参考文章:
1、https://blog.csdn.net/gisuuser/article/details/77748779
2、https://www.cnblogs.com/gamedaybyday/p/6637933.html
3、https://www.liaoxuefeng.com/wiki/1022910821149312/1023025830950720
4、https://www.cnblogs.com/lazyli/p/10790101.html