3.6 平台数据接口 - getPlatforms
优质
小牛编辑
134浏览
2023-12-01
平台数据接口 - GetPlatforms
获取平台列表 可根据名称模糊查询返回平台列表
Request Parameters
Parameter name | Type | Description | Required |
---|---|---|---|
search_word | string | 名称模糊查询,如果为空,返回所有平台 | No |
Response Elements
Parameter name | Type | Description |
---|---|---|
action | string | 响应动作 |
platforms | array | 平台列表,每项参数可见下面 Response Item |
total_count | int | 根据过滤条件得到的平台数 |
Response Item
Parameter name | Type | Description |
---|---|---|
platform_id | string | 平台id |
platform_name | string | 平台名称 |
platform_url | string | 平台网址 |
示例
请求示例
http://open.syntun.cn/api/dq/GetPlatforms
&search_word="京"
&COMMON_PARAMS
响应示例
{
"code": 1000,
"msg": "OK",
"data": {
"action": "GetPlatforms",
"platforms": [
{
"platform_id": 1,
"platform_name": "京东",
"platform_url": "http:\/\/www.jd.com"
}
],
"total_count": 1
}
}