协会宝开放平台

会议管理

更新时间: 2019-03-29

获取会议列表

请求方式:GET(HTTPS)
请求地址/api/values/GetMeeting
参数说明

参数 参数类型 必须 说明
appkey string 获取对应协会的appkey
appsecret string 获取对应协会的appsecret
timestamp string 获取当前时间戳(以秒为单位不是毫秒,毫秒需要除以1000)
associationCode string 获取对应协会的协会短码
pagesize int 每页显示条数,非必填项,默认值8
pagenumber int 当前页,非必填项,默认值1
token string 签名验证

SDK请求示例(C#)


    string url = "http://localhost:90/api/values/GetMeeting";
    Dictionary<string, string> parames = new Dictionary<string, string>();
    parames.Add("associationCode", "{code}");
    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();

    //获取HTTP返回数据
    StreamReader sr = new StreamReader(response.GetResponseStream(), Encoding.UTF8);
    string result = sr.ReadToEnd().Trim();
    sr.Close();
    response.Close();

返回结果


{
    "IsSuccess": true,
    "Total": 51,
    "List": [{
        "Id": 1,
        "MeetingName": "测试名称",
        "Time": "2019-02-27 01:00 ~ 12:30"
        }, {
        "Id": 4,
        " MeetingName": "厦门五通泥金社第二届篮球大赛会议",
        "Time": "2019-02-28 01:00 ~ 12:30"
        }, {
        "Id": 5,
        "MeetingName": "某某地第一届城市大会",
        "Time": "2019-02-28 01:00 ~ 12:30"
        }, {
        "Id": 692,
        "MeetingName": "黄测试0328111",
        "Time": "2019-03-30 13:00 ~ 03-3114:00"
        }, {
        "Id": 693,
        "MeetingName": "起草发布推送会议",
        "Time": "2019-03-28 22:00 ~ 23:00"
        }, {
        "Id": 695,
        "MeetingName": "测试推送",
        "Time": "2019-03-28 16:40 ~ 22:00"
        }, {
        "Id": 694,
        "MeetingName": "测试推送啊啊啊啊",
        "Time": "2019-03-28 16:11 ~ 20:00"
        }, {
        "Id": 691,
        "MeetingName": "黄测试推送测试",
        "Time": "2019-03-28 13:30 ~ 17:00"
    }]
}
参数 说明
IsSuccess 返回码
Total 返回的数据总条数
List
└ Id 会议Id
└ MeetingName 会议名称
└ Time 会议开始时间和结束时间

调试

以上内容是否对您有帮助:
提交成功,感谢您的反馈!