网络函数
说明
- 网络模块函数主要是跟网络请求信息相关联
- 网络模块的对象前缀是http, 例如 http.downloadFile()这样调用
http.request 万能请求函数
- HTTP万能请求
- @param param map参数, 包含的参数有
- url:字符串 请求的地址
- timeout:整型毫秒, 超时时间
- method: POST ,GET,PUT 字符串, 代表请求的方法
- proxy: 代理地址, map参数 包含主机和端口 例如
{"host":"11","port":111}
- followRedirects:是否自动跳转 true 或者 false
- requestBody: 请求的body体, 如果是JSON, 就是JSON字符串
- userAgent:字符串 HTTP 的UA
- ignoreContentType:是否忽略内容类型 true 或者 false
- ignoreHttpErrors:是否忽略错误 true 或者 false
- maxBodySize : 整型, HTTP BODY最大值
- referrer:字符串, 请求来源
- header: HTTP 请求头, map参数,例如
{"UA":"test"}
- cookie: HTTP 请求Cookie, map参数, 例如
{"a":1}
- data:HTTP POST的数据, map参数, 例如
{"a":1}
- file:要上传的文件, 集合参数, 例如
[{"key":"a1","fileName":"a.txt","filePath":"D:/"},{"key":"a1","fileName":"a.jpg","filePath":"D:/","contentType":"image/jpg"}]
- 其中contentType可有可无
- responseCharset: 字符串, 强制设置响应内容的编码集
- url:字符串 请求的地址
- @return Response 对象或者null
function main() {
http_request();
}
function http_request() {
//url:string
//timeout:int ms
//method: post ,get
//proxy: {"host":"11","port":111}
//followRedirects:true false
//requestBody: string
//userAgent:string
//ignoreContentType:true false
//ignoreHttpErrors:true false
//maxBodySize : int
//referrer:string
//header:{"UA":"test"}
//cookie:{"a":1}
//data:{"a":1}
//file:[{}]
//responseCharset: string
var md = utils.dataMd5("12345");
var md2 = utils.fileMd5("D:/sb.png");
var url = "http://192.168.0.5:8081/api/request";
var proxy = {"host": "192.168.0.5", "port": "100"};
var userAgent = "xxx";
var followRedirects = false;
var requestBody = JSON.stringify({"A": 111});
var ignoreContentType = true;
var ignoreHttpErrors = true;
var referrer = "xxx";
var header = {
"Content-Type": " application/json; charset=UTF-8",
"User-Agent": "from test",
"ddd": md,
"dd2": md2,
"imei": device.getIMEI()
};
var cookie = {
"cookie1": "tst1",
"cookie2": "tst2"
};
var data = {
"a1": "aaa",
"pwd2": md,
"md2": md2
};
var file = [
{
"key": "file",
"fileName": "f.png",
"filePath": "D:/sb.png"
},
{
"key": "file",
"fileName": "f2.png",
"filePath": "D:/sde.png",
"contentType": "image/png"
}
];
var params = {
"url": url,
"method": "POST",
"userAgent": userAgent,
"referrer": "baidu.com",
"cookie": cookie,
"data": data,
"file": file
};
var x = http.request(params);
if (x) {
logd("header=> " + x.header);
logd("cookie=> " + x.cookie);
logd("statusCode=> " + x.statusCode);
logd("statusMessage=> " + x.statusMessage);
logd("charset=> " + x.charset);
logd("contentType=> " + x.contentType);
logd("body=> " + x.body);
} else {
loge("无结果");
}
}
main();
http.requestEx 万能请求函数(扩展)
- HTTP万能请求
- @param param map参数, 包含的参数有
- url:字符串 请求的地址
- timeout:整型毫秒, 超时时间
- method: POST ,GET,PUT 字符串, 代表请求的方法
- proxy: 代理地址, map参数 包含主机和端口 例如
{"host":"11","port":111}
- followRedirects:是否自动跳转 true 或者 false
- requestBody: 请求的body体, 如果是JSON, 就是JSON字符串
- userAgent:字符串 HTTP 的UA
- ignoreContentType:是否忽略内容类型 true 或者 false
- ignoreHttpErrors:是否忽略错误 true 或者 false
- maxBodySize : 整型, HTTP BODY最大值
- referrer:字符串, 请求来源
- header: HTTP 请求头, map参数,例如
{"UA":"test"}
- cookie: HTTP 请求Cookie, map参数, 例如
{"a":1}
- data:HTTP POST的数据, map参数, 例如
{"a":1}
- file:要上传的文件, 集合参数, 例如
[{"key":"a1","fileName":"a.txt","filePath":"D:/"},{"key":"a1","fileName":"a.jpg","filePath":"D:/","contentType":"image/jpg"}]
- 其中contentType可 有可无
- responseCharset: 字符串, 强制设置响应内容的编码集
- url:字符串 请求的地址
- @return Response 对象或者null
function main() {
http_request();
}
function http_request() {
//url:string
//timeout:int ms
//method: post ,get
//proxy: {"host":"11","port":111}
//followRedirects:true false
//requestBody: string
//userAgent:string
//ignoreContentType:true false
//ignoreHttpErrors:true false
//maxBodySize : int
//referrer:string
//header:{"UA":"test"}
//cookie:{"a":1}
//data:{"a":1}
//file:[{}]
//responseCharset: string
var md = utils.dataMd5("12345");
var md2 = utils.fileMd5("D:/sb.png");
var url = "http://192.168.0.5:8081/api/request";
var proxy = {"host": "192.168.0.5", "port": "100"};
var userAgent = "xxx";
var followRedirects = false;
var requestBody = JSON.stringify({"A": 111});
var ignoreContentType = true;
var ignoreHttpErrors = true;
var referrer = "xxx";
var header = {
"Content-Type": " application/json; charset=UTF-8",
"User-Agent": "from test",
"ddd": md,
"dd2": md2,
"imei": device.getIMEI()
};
var cookie = {
"cookie1": "tst1",
"cookie2": "tst2"
};
var data = {
"a1": "aaa",
"pwd2": md,
"md2": md2
};
var file = [
{
"key": "file",
"fileName": "f.png",
"filePath": "D:/sb.png"
},
{
"key": "file",
"fileName": "f2.png",
"filePath": "D:/sde.png",
"contentType": "image/png"
}
];
var params = {
"url": url,
"method": "POST",
"userAgent": userAgent,
"referrer": "baidu.com",
"cookie": cookie,
"data": data,
"file": file
};
var x = http.requestEx(params);
if (x) {
logd("header=> " + x.header);
//直接取值
logd("header=> " + x.header["Location"]);
for (var d in x.header) {
logd("header key " + d + " " + x.header[d]);
}
logd("cookie=> " + x.cookie);
for (var d in x.cookie) {
logd("cookie key " + d + " " + x.cookie[d]);
}
logd("cookie=> " + x.cookie["aa"]);
logd("statusCode=> " + x.statusCode);
logd("statusMessage=> " + x.statusMessage);
logd("charset=> " + x.charset);
logd("contentType=> " + x.contentType);
logd("body=> " + x.body);
} else {
loge("无结果");
}
}
main();
http.downloadFile 下 载文件
- 下载远程文件到本地,支持断点续传
- @param remoteUrl 远程文件URL
- @param file 要保存到本地的文件对象
- @param timeout 下载超时, 单位是毫秒
- @param headers – 头标志例如
{"a":"11"}
- @return true 代表成功 false代表失败
function main() {
var url = "https://imtt.dd.qq.com/16891/apk/DF4FD15AF9A9B51BA74D2710CF738EEF.apk?fsname=com.ishugui_3.9.2.3068_3923068.apk&csr=1bbd";
var x = http.downloadFile(url, "D:/ss.apk", 10 * 1000, {"User-Agent": "test"});
logd("download result-> " + x);
}
main();
http.downloadFileDefault 下载文件
- 下载远程文件到本地,支持断点续传, 默认超时时间为30秒
- @param remoteUrl 远程文件URL
- @param file 要保存到本地的文件对象
- @param headers – 头标志例如
{"a":"11"}
- @return true 代表成功 false代表失败
function main() {
var url = "https://imtt.dd.qq.com/16891/apk/DF4FD15AF9A9B51BA74D2710CF738EEF.apk?fsname=com.ishugui_3.9.2.3068_3923068.apk&csr=1bbd";
var x = http.downloadFileDefault(url, "D:/ss.apk", {"User-Agent": "test"});
logd("download result-> " + x);
}
main();
http.httpGetDefault GET请求
- Http GET 请求
- @param url 请求的URL
- @param timeout 超时时间 单位毫秒
- @param headers – 头标志例如
{"a":"11"}
- @return 字符串 请求后返回的字符串
function main() {
var url = "http://192.168.0.5:8081/api/httpGet?a=1";
var x = http.httpGetDefault(url, 10 * 1000, {"User-Agent": "test"});
logd(" result-> " + x);
loge("result -> " + x);
}
main();
http.httpGet GET请求
- Http GET 请求
- @param url 请求的URL
- @param params 参数Map表 例如
{"a":"11"}
这样的参数或者字符串 - @param timeout 超时时间 单位毫秒
- @param headers – 头标志例如
{"a":"11"}
- @return 字符串 请求后返回的字符串
function main() {
var url = "http://192.168.0.5:8081/api/httpGet?a=1";
var pa = {"b": "22"};
var x = http.httpGet(url, pa, 10 * 1000, {"User-Agent": "test"});
logd(" result-> " + x);
loge("result -> " + x);
}
main();
http.httpPost POST请求
- Http Post 请求
- @param url 请求的URL
- @param params 参数, 例如
{"a":"11"}
这样的参数或者字符串 - @param files 要上传的文件, 例如
{"file1":"D:/1.png"}
这样的文件参数 - @param timeout 超时时间 单位毫秒
- @param headers – 头标志例如
{"a":"11"}
- @return 字符串 请求后返回的字符串
function main() {
//不带文件的请求
var url = "http://192.168.0.5:8081/api/httpPost";
var pa = {"b": "我是b的值"};
var x = http.httpPost(url, pa, null, 10 * 1000, {"User-Agent": "test"});
logd(" result-> " + x);
loge("result -> " + x);
}
main();
function main() {
//带上传文件的请求
var url = "http://192.168.0.5:8081/api/httpPost";
var pa = {"b": "我是b的值"};
var files = {"file1": "D:/p.json", "file2": "D:/z.xml"};
var x = http.httpPost(url, pa, files, 10 * 1000, {"User-Agent": "test"});
logd(" result-> " + x);
loge("result -> " + x);
}
main();