Skip to content

获取系统配置的站点友情链接

接口地址

  • 请求方法:GET

  • 是否鉴权:否

  • 请求编码:Content-Type:application/x-www-form-urlencoded

  • 响应编码:Content-Type:application/json;charset=UTF-8

  • 请求地址:index/site/friendLink

  • 请求参数:

参数名参数类型是否必填参数说明示例值
pageint当前页数1
sizeint分页大小最大值20
  • 成功示例:
javascript
{
  "data": {
    "items": [
      {
        "title": "兔兔答题",
        "image": "https://xxxx04190409437bf9123.png",
        "remark": "asdfasdfasdf",
        "url": "https://www.tutudati.com",
      },
    ],
    "page": 1,
    "size": 20,
    "total": 3
  },
  "code": 100,
  "msg": "请求成功"
}
参数名参数类型是否必有参数说明示例值
titlestring友情链接标题
imagestring友情链接图片https://sssssss.png
remarkstring友情链接备注
urlstring友情链接地址
  • 失败示例:
javascript
{
	"code": 101,
	"data": [],
	"msg": "请求失败"
}