# 信息獲取
- 1.獲取Cid
~~~[api]
get:/push/get/cid
int:count=1#cid的數量
string:type=push#cid的類型
<<<
success
{
"body": {
"cidlist": [
"a190335ca6796d82cabb89f3-e3017e1f-accd-42e0-8ca8-63feca43a82b"
]
},
"http_code": 200,
"headers": {
"0": "HTTP/1.1 200 OK",
"Server": "nginx",
"Date": "Tue, 13 Feb 2018 07:54:01 GMT",
"Content-Type": "application/json",
"Transfer-Encoding": "chunked",
"Connection": "keep-alive",
"X-Rate-Limit-Limit": "600",
"X-Rate-Limit-Remaining": "598",
"X-Rate-Limit-Reset": "59"
}
}
~~~
- 2.獲取推送池中所有標簽
~~~[api]
get:/push/get/tags
<<<
success
{
"body": {
"tags": [
{
"tagid": "002",
"tagname": "軟件工程"
},
{
"tagid": "001",
"tagname": "計算機科學與技術"
}
]
},
"http_code": 200,
"headers": {
"0": "HTTP/2 200 ",
"server": "nginx",
"date": "Mon, 03 Sep 2018 08:17:11 GMT",
"content-type": "application/json",
"x-rate-limit-limit": "1200",
"x-rate-limit-remaining": "1199",
"x-rate-limit-reset": "60",
"x-frame-options": "SAMEORIGIN"
},
"status": true
}
<<<
無標簽
{
"body": {
"tags": []
},
"http_code": 200,
"headers": {
"0": "HTTP/2 200 ",
"server": "nginx",
"date": "Mon, 03 Sep 2018 08:20:32 GMT",
"content-type": "application/json",
"x-rate-limit-limit": "1200",
"x-rate-limit-remaining": "1199",
"x-rate-limit-reset": "60",
"x-frame-options": "SAMEORIGIN"
},
"status": false,
"title": "推送池中沒有標簽"
}
~~~