会议管理
获取会议详情
                        请求方式:GET(HTTPS)
                        请求地址:/api/values/GetMeetingDetail 
                        参数说明:
                    
| 参数 | 参数类型 | 必须 | 说明 | 
|---|---|---|---|
| appkey | string | 是 | 获取对应协会的appkey | 
| appsecret | string | 是 | 获取对应协会的appsecret | 
| timestamp | string | 是 | 获取当前时间戳(以秒为单位不是毫秒,毫秒需要除以1000) | 
| associationCode | string | 是 | 获取对应协会的协会短码 | 
| meetId | int | 是 | 获取对应的会议Id | 
| token | string | 是 | 签名验证 | 
SDK请求示例(C#):
    string url = host + "/api/values/GetMeetingDetail";
    Dictionary<string, string> parames = new Dictionary<string, string>();
    parames.Add("associationCode", "{code}");
    parames.Add("meetId", "{meetId}");
    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": 1,
            "MeetingName": "会议测试",
            "MeetingAddress": "五通泥金社",
            "Time": "2019-02-27 01:00 ~ 12:30:00",
            "IsSecrecy": 0,
            "Describe": "会议详情...",
            "Url": "",
            "CreatorName": "",
            "FileList": ""
        }
    }
                    | 参数 | 说明 | 
|---|---|
| IsSuccess | 返回码 | 
| Data | |
| └ Id | 会议的Id | 
| └ MeetingName | 会议名称 | 
| └ MeetingAddress | 会议地址 | 
| └ BeginTime | 会议开始时间 | 
| └ EndTime | 会议结束时间 | 
| └ IsSecrecy | 是否公开(0:公开,1:保密) | 
| └ Describe | 会议详情描述 | 
| └ Url | 公开会议Url为空,保密会议Url不为空(可用该Url可生成二维码),该Url链接到协会宝平台(需要有权限才能访问) | 
| └ CreatorName | 创建人 | 
| └ FileList | 附件 | 
调试: