require_once("curl.func.php");
$method = "POST";
$url = "http://open.liupai.net/train/station";
$headers = NULL;
$params = array(
"appkey" => "yourappsecret",
"start" => "杭州",
"end" => "北京",
"ishigh" => "0",
"date" => "参数4"
);
$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/train/station";
//请求方法设置
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("start", "杭州");
params.put("end", "北京");
params.put("ishigh", "0");
params.put("date", "参数4");
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/train/station"
headers = None
params = {
"appkey" : "yourappsecret",
"start" : "杭州",
"end" : "北京",
"ishigh" : "0",
"date" : "参数4"
}
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": 0,
"msg": "ok",
"result": [
{
"trainno": "G34",
"type": "高铁",
"station": "杭州东",
"endstation": "北京南",
"departuretime": "07:18",
"arrivaltime": "13:07",
"sequenceno": "1",
"costtime": "5时49分",
"distance": "1279",
"isend": "1",
"pricesw": "",
"pricetd": "",
"pricegr1": "",
"pricegr2": "",
"pricerw1": "0.0",
"pricerw2": "0.0",
"priceyw1": "0.0",
"priceyw2": "0.0",
"priceyw3": "0.0",
"priceyd": "907.0",
"priceed": "538.5"
},
{
"trainno": "G32",
"type": "高铁",
"station": "杭州东",
"endstation": "北京南",
"departuretime": "08:30",
"arrivaltime": "13:28",
"sequenceno": "1",
"costtime": "4时58分",
"distance": "1279",
"isend": "1",
"pricesw": "",
"pricetd": "",
"pricegr1": "",
"