通知公告
获取通知公告详情
请求方式:GET(HTTPS)
请求地址:/api/values/GetNoticeDetail
参数说明:
参数 | 参数类型 | 必须 | 说明 |
---|---|---|---|
appkey | string | 是 | 获取对应协会的appkey |
appsecret | string | 是 | 获取对应协会的appsecret |
timestamp | string | 是 | 获取当前时间戳(以秒为单位不是毫秒,毫秒需要除以1000) |
associationCode | string | 是 | 获取对应协会的协会短码 |
noticeId | int | 是 | 获取对应的公告Id |
token | string | 是 | 签名验证 |
SDK请求示例(C#):
string url = "http://localhost:90/api/values/GetNoticeDetail";
Dictionary<string, string> parames = new Dictionary<string, string>();
parames.Add("associationCode", "{code}");
parames.Add("noticeId", "{noticeId}");
parames.Add("appkey", "{appkey}");
parames.Add("appsecret", "{appsecret}");
parames.Add("timestamp", "{timestamp}");
parames.Add("token", "{token}");
url += "?" + GetUrl(parames);
HttpWebRequest request = null;
HttpWebResponse response = null;
request = (HttpWebRequest)WebRequest.Create(url);
request.Method = "GET";
response = (HttpWebResponse)request.GetResponse();
StreamReader sr = new StreamReader(response.GetResponseStream(), Encoding.UTF8);
string result = sr.ReadToEnd().Trim();
sr.Close();
response.Close();
返回结果:
{
"IsSuccess": true,
"Data":
{
"Id": 511,
"NoticeName": "公告测试001",
"ReleaseTime": "2019-03-28T13:30:00",
"IsSecrecy": 1,
"Describe": "这是一条测试公告",
"Url": "https://m.xiehuioa.cn/AssociationNoticeAnnouncement/AnnouncementDocumentDetail?id=511",
"CreatorName": "",
"FileList": ""
}
}
参数 | 说明 |
---|---|
IsSuccess | 返回码 |
Data | |
└ Id | 公告的Id |
└ NoticeName | 公告名称 |
└ ReleaseTime | 公告发布时间 |
└ Describe | 通知公告详情描述 |
└ IsSecrecy | 是否公开(0:公开,1:保密) |
└ Url | 公开公告Url为空,保密公告Url不为空(可用该Url可生成二维码),该Url链接到协会宝平台(需要有权限才能访问) |
└ CreatorName | 创建人 |
└ FileList | 附件 |
调试: