require_once("curl.func.php");
$method = "POST";
$url = "https://open.6api.net/bus/station2c";
$headers = NULL;
$params = array(
"appkey" => "yourappsecret",
"fromCity" => "北京",
"toCity" => "张家口",
"fromStation" => "六里桥客运站",
"toStation" => "张家口(西沙河)",
"date" => "2025-02-24"
);
$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 = "https://open.6api.net/bus/station2c";
//请求方法设置
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("fromCity", "北京");
params.put("toCity", "张家口");
params.put("fromStation", "六里桥客运站");
params.put("toStation", "张家口(西沙河)");
params.put("date", "2025-02-24");
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 = "https://open.6api.net/bus/station2c"
headers = None
params = {
"appkey" : "yourappsecret",
"fromCity" : "北京",
"toCity" : "张家口",
"fromStation" : "六里桥客运站",
"toStation" : "张家口(西沙河)",
"date" : "2025-02-24"
}
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:
print("请求失败: %s" % (body,))
else:
print("发送请求失败")
{
"status": 200,
"msg": "OK",
"result": [
{
"fromCity": "北京",
"toCity": "张家口",
"fromStation": "六里桥客运站",
"toStation": "张家口",
"toStationShow": "张家口",
"startDate": "2025-02-24",
"startTime": "07:30",
"price": 70,
"typeDesc": "多班次滚动发车,每班间隔一段时间发车/坐满发车",
"busType": "普通大巴",
"costTime": "约4时30分",
"isWayStation": false
},
{
"fromCity": "北京",
"toCity": "张家口[西沙河]",
"fromStation": "六里桥客运站",
"toStation": "张家口(西沙河)",
"toStationShow": "张家口(西沙河)",
"startDate": "2025-02-24",
"startTime": "07:30",
"price": 70,
"typeDesc": "多班次滚动发车,每班间隔一段时间发车/坐满发车",
"busType": "普通大巴",
"costTime": "约3时30分",
"isWayStation": false
},
{
"fromCity": "北京",
"toCity": "张家口",
"fromStation": "六里桥客运站",
"toStation": "张家口",
"toStationShow": "张家口",
"startDate": "2025-02-24",
"startTime": "08:50",
"price": 70,
"typeDesc": "多班次滚动发车,每班间隔一段时间发车/坐满发车",
"busType": "普通大巴",
"costTime": "约4时30分",
"isWayStation": false
}
]
}