require_once("curl.func.php");
$method = "POST";
$url = "http://open.liupai.net/vin/query";
$headers = NULL;
$params = array(
"appkey" => "yourappsecret",
"vin" => "参数1"
);
$result = api_curl($method, $url, $headers, $params);
if ($result) {
$body = json_decode($result["body"], TRUE);
$status_code = $body["status"];
if ($status_code == "200") {
var_dump($body["result"]);
}else
var_dump($body);
}else
echo "发送请求失败";
/**
* 主函数
* @param args
*/
public static void main(String args[])
{
//请求地址设置
String url = "http://open.liupai.net/vin/query";
//请求方法设置
String requestMethod = "POST";
//请求头部设置
Map<String, String> headers = new HashMap<String, String>();
//请求参数设置
Map<String, String> params = new HashMap<String, String>();
params.put("appkey", "yourappsecret");
params.put("vin", "参数1");
String result = proxyToDesURL(requestMethod, url, headers, params);
if (result != null) {
JSONObject jsonObject = JSONObject.parseObject(result);
String status_code = jsonObject.getString("status");
if (status_code.equals("200")) {
System.out.println("请求成功:" + jsonObject.getString("result"));
} else {
System.out.println("请求失败:" + jsonObject.getString("msg"));
}
} else {
System.out.println("发送请求异常");
}
}
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# 测试环境: python2.7
# 安装requests依赖 => pip install requests/ easy_install requests
import requests
import json
import sys
reload(sys)
sys.setdefaultencoding("utf-8")
def api_send_request(method, url, params=None, headers=None):
'''
转发请求到目的主机
@param method str 请求方法
@param url str 请求地址
@param params dict 请求参数
@param headers dict 请求头
'''
method = str.upper(method)
if method == "POST":
return requests.post(url=url, data=params, headers=headers)
elif method == "GET":
return requests.get(url=url, params=params, headers=headers)
else:
return None
method = "POST"
url = "http://open.liupai.net/vin/query"
headers = None
params = {
"appkey" : "yourappsecret",
"vin" : "参数1"
}
result = api_send_request(method=method, url=url, params=params, headers=headers)
if result:
body = result.result
response = json.loads(body)
status_code = response["status"]
if (status_code == "200"):
print("请求成功:%s" % (body,))
else:
pr
{
"status": "200",
"msg": "ok",
"result": {
"manufacturer": "上海大众",
"brand": "斯柯达",
"cartype": "明锐",
"name": "1.6 手自一体 逸仕版",
"yeartype": "2007",
"environmentalstandards": "国3",
"comfuelconsumption": "8",
"engine": "1.6L L4 105PS 多点电喷汽油发动机",
"gearbox": "手自一体变速器(AMT)",
"drivemode": "前置前驱",
"carbody": "硬顶 五门 5",
"fronttiresize": "205/55 R16 16英寸 铝合金",
"reartiresize": "205/55 R16 16英寸 铝合金",
"vin": "LSVAL41Z882104202"
}
}