获取三方分享设置
# 获取三方分享设置
## 请求地址
``` url
/api/index/
```
## 请求参数
| 请求参数 | 默认值 | 说明 |
| ---------- | ------------- | ------- |
| \_handle | SettingPage| |
| \_method | GetThirdLogin| |
| token | | 登陆令牌 |
## 请求响应
``` json
{
"code": 1,
"msg": "",
"data": {
"qq": {
"appid": "123appid", //appid
"appsecret": "123appkey", //appkey
"state": "on"// 是否开启 on是off关闭
},
"wechat": //微信{
"appid": "weixin1",
"appsecret": "weixin1",
"state": "on"
},
"sina": {
"appid": "weixin1",
"appsecret": "weixin2",
"state": "on"
},
"weixin"://公众号 -朋友圈 {
"appid": "wx6919929cb4481113",
"appsecret": "575b03d4bd43fa9646a26d98cb02acdb",
"state": "off"
}
}
}
```