简要描述:

获取网站设置信息

请求域名:

  • http://xx.com

请求URL:

POST/plugin.case-library.api.case.get-set

返回参数说明:

参数名 类型 说明
set[name] int 插件名
set[pc_style] int 0用h5样式,1用PC版样式
set[nav_top] array 顶部导航信息(name:导航名,url:导航链接)
set[nav_bottom] string 底部导航信息
set[logo] string logo图片的地址(相对地址)
set[logo_src] string logo图片的地址(绝对地址)
set[service_phone] string 客服电话
set[service_qr_code] string 客服二维码(相对地址)
set[service_qr_code_src] string 客服二维码(绝对地址)
advert[img] string 广告位2地址
advert[url] string 广告位2跳转链接
is_login bool true已登录,false未登录

返回示例:

正确时返回的数据:

{
	"result": 1,
	"msg": "ok",
	"data": {
		"set": {
			"name": "案例库",
			"pc_style": 0,
			"logo": null,
			"nav_top": [
				{
					"name": "首页",
					"url": "https://baidu.com"
				},
				{
					"name": "解决方案",
					"url": ""
				},
				{
					"name": "产品中心",
					"url": ""
				},
				{
					"name": "资源中心",
					"url": ""
				},
				{
					"name": "关于我们",
					"url": ""
				}
			],
			"nav_bottom": "<div>发送的我是认同我</div>",
			"service_phone": null,
			"service_qr_code": null,
			"logo_src": "",
			"service_qr_code_src": ""
		},
		"advert": {
			"img": "",
			"url": ""
		},
		"is_login": true
	}
}

错误时返回:

{
	"result": 0,
	"msg": "",
	"data": []
}

备注:

  • 更多返回错误代码请看首页的错误代码描述