From 8ca323bdaccd35502c2631bcec136f1be64293eb Mon Sep 17 00:00:00 2001 From: Fu Diwei Date: Wed, 23 Jul 2025 16:02:04 +0800 Subject: [PATCH] =?UTF-8?q?feat(work):=20=E6=96=B0=E5=A2=9E=E6=99=BA?= =?UTF-8?q?=E8=83=BD=E8=A1=A8=E6=A0=BC=E8=87=AA=E5=8A=A8=E5=8C=96=E5=88=9B?= =?UTF-8?q?=E5=BB=BA=E7=9A=84=E7=BE=A4=E8=81=8A=E7=9B=B8=E5=85=B3=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...tWorkClientExecuteCgibinWedocExtensions.cs | 71 +++++++++++++++++++ ...gibinWedocSmartSheetGroupChatGetRequest.cs | 22 ++++++ ...ibinWedocSmartSheetGroupChatGetResponse.cs | 29 ++++++++ ...ibinWedocSmartSheetGroupChatListRequest.cs | 29 ++++++++ ...binWedocSmartSheetGroupChatListResponse.cs | 29 ++++++++ ...inWedocSmartSheetGroupChatUpdateRequest.cs | 45 ++++++++++++ ...nWedocSmartSheetGroupChatUpdateResponse.cs | 9 +++ .../File/CgibinWedriveFileListRequest.cs | 6 +- .../File/CgibinWedriveFileListResponse.cs | 6 +- ...binWedocSmartSheetGroupChatGetRequest.json | 4 ++ ...inWedocSmartSheetGroupChatGetResponse.json | 7 ++ ...inWedocSmartSheetGroupChatListRequest.json | 5 ++ ...nWedocSmartSheetGroupChatListResponse.json | 7 ++ ...WedocSmartSheetGroupChatUpdateRequest.json | 7 ++ 14 files changed, 270 insertions(+), 6 deletions(-) create mode 100644 src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatGetRequest.cs create mode 100644 src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatGetResponse.cs create mode 100644 src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatListRequest.cs create mode 100644 src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatListResponse.cs create mode 100644 src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatUpdateRequest.cs create mode 100644 src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatUpdateResponse.cs create mode 100644 test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatGetRequest.json create mode 100644 test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatGetResponse.json create mode 100644 test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatListRequest.json create mode 100644 test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatListResponse.json create mode 100644 test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatUpdateRequest.json diff --git a/src/SKIT.FlurlHttpClient.Wechat.Work/Extensions/WechatWorkClientExecuteCgibinWedocExtensions.cs b/src/SKIT.FlurlHttpClient.Wechat.Work/Extensions/WechatWorkClientExecuteCgibinWedocExtensions.cs index caac7514..4f9983ad 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Work/Extensions/WechatWorkClientExecuteCgibinWedocExtensions.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Work/Extensions/WechatWorkClientExecuteCgibinWedocExtensions.cs @@ -726,6 +726,77 @@ namespace SKIT.FlurlHttpClient.Wechat.Work return await client.SendFlurlRequestAsJsonAsync(flurlReq, data: request, cancellationToken: cancellationToken).ConfigureAwait(false); } + + #region SmartSheet/GroupChat + /// + /// 异步调用 [POST] /cgi-bin/wedoc/smartsheet/groupchat/list 接口。 + /// + /// REF:
+ /// + ///
+ ///
+ /// + /// + /// + /// + public static async Task ExecuteCgibinWedocSmartSheetGroupChatListAsync(this WechatWorkClient client, Models.CgibinWedocSmartSheetGroupChatListRequest request, CancellationToken cancellationToken = default) + { + if (client is null) throw new ArgumentNullException(nameof(client)); + if (request is null) throw new ArgumentNullException(nameof(request)); + + IFlurlRequest flurlReq = client + .CreateFlurlRequest(request, HttpMethod.Post, "cgi-bin", "wedoc", "smartsheet", "groupchat", "list") + .SetQueryParam("access_token", request.AccessToken); + + return await client.SendFlurlRequestAsJsonAsync(flurlReq, data: request, cancellationToken: cancellationToken).ConfigureAwait(false); + } + + /// + /// 异步调用 [POST] /cgi-bin/wedoc/smartsheet/groupchat/get 接口。 + /// + /// REF:
+ /// + ///
+ ///
+ /// + /// + /// + /// + public static async Task ExecuteCgibinWedocSmartSheetGroupChatGetAsync(this WechatWorkClient client, Models.CgibinWedocSmartSheetGroupChatGetRequest request, CancellationToken cancellationToken = default) + { + if (client is null) throw new ArgumentNullException(nameof(client)); + if (request is null) throw new ArgumentNullException(nameof(request)); + + IFlurlRequest flurlReq = client + .CreateFlurlRequest(request, HttpMethod.Post, "cgi-bin", "wedoc", "smartsheet", "groupchat", "get") + .SetQueryParam("access_token", request.AccessToken); + + return await client.SendFlurlRequestAsJsonAsync(flurlReq, data: request, cancellationToken: cancellationToken).ConfigureAwait(false); + } + + /// + /// 异步调用 [POST] /cgi-bin/wedoc/smartsheet/groupchat/update 接口。 + /// + /// REF:
+ /// + ///
+ ///
+ /// + /// + /// + /// + public static async Task ExecuteCgibinWedocSmartSheetGroupChatUpdateAsync(this WechatWorkClient client, Models.CgibinWedocSmartSheetGroupChatUpdateRequest request, CancellationToken cancellationToken = default) + { + if (client is null) throw new ArgumentNullException(nameof(client)); + if (request is null) throw new ArgumentNullException(nameof(request)); + + IFlurlRequest flurlReq = client + .CreateFlurlRequest(request, HttpMethod.Post, "cgi-bin", "wedoc", "smartsheet", "groupchat", "update") + .SetQueryParam("access_token", request.AccessToken); + + return await client.SendFlurlRequestAsJsonAsync(flurlReq, data: request, cancellationToken: cancellationToken).ConfigureAwait(false); + } + #endregion #endregion #region SpreadSheet diff --git a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatGetRequest.cs b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatGetRequest.cs new file mode 100644 index 00000000..681dd664 --- /dev/null +++ b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatGetRequest.cs @@ -0,0 +1,22 @@ +namespace SKIT.FlurlHttpClient.Wechat.Work.Models +{ + /// + /// 表示 [POST] /cgi-bin/wedoc/smartsheet/groupchat/get 接口的请求。 + /// + public class CgibinWedocSmartSheetGroupChatGetRequest : WechatWorkRequest + { + /// + /// 获取或设置文档 ID。 + /// + [Newtonsoft.Json.JsonProperty("docid")] + [System.Text.Json.Serialization.JsonPropertyName("docid")] + public string DocumentId { get; set; } = string.Empty; + + /// + /// 获取或设置群聊 ID。 + /// + [Newtonsoft.Json.JsonProperty("chat_id")] + [System.Text.Json.Serialization.JsonPropertyName("chat_id")] + public string GroupChatId { get; set; } = string.Empty; + } +} diff --git a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatGetResponse.cs b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatGetResponse.cs new file mode 100644 index 00000000..8a9bc86f --- /dev/null +++ b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatGetResponse.cs @@ -0,0 +1,29 @@ +namespace SKIT.FlurlHttpClient.Wechat.Work.Models +{ + /// + /// 表示 [POST] /cgi-bin/wedoc/smartsheet/groupchat/get 接口的响应。 + /// + public class CgibinWedocSmartSheetGroupChatGetResponse : WechatWorkResponse + { + /// + /// 获取或设置群聊名称。 + /// + [Newtonsoft.Json.JsonProperty("name")] + [System.Text.Json.Serialization.JsonPropertyName("name")] + public string Name { get; set; } = default!; + + /// + /// 获取或设置群主成员账号。 + /// + [Newtonsoft.Json.JsonProperty("owner")] + [System.Text.Json.Serialization.JsonPropertyName("owner")] + public string OwnerUserId { get; set; } = default!; + + /// + /// 获取或设置群成员账号列表。 + /// + [Newtonsoft.Json.JsonProperty("user_list")] + [System.Text.Json.Serialization.JsonPropertyName("user_list")] + public string[] UserIdList { get; set; } = default!; + } +} diff --git a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatListRequest.cs b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatListRequest.cs new file mode 100644 index 00000000..2a7d4809 --- /dev/null +++ b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatListRequest.cs @@ -0,0 +1,29 @@ +namespace SKIT.FlurlHttpClient.Wechat.Work.Models +{ + /// + /// 表示 [POST] /cgi-bin/wedoc/smartsheet/groupchat/list 接口的请求。 + /// + public class CgibinWedocSmartSheetGroupChatListRequest : WechatWorkRequest + { + /// + /// 获取或设置文档 ID。 + /// + [Newtonsoft.Json.JsonProperty("docid")] + [System.Text.Json.Serialization.JsonPropertyName("docid")] + public string DocumentId { get; set; } = string.Empty; + + /// + /// 获取或设置分页游标。 + /// + [Newtonsoft.Json.JsonProperty("cursor")] + [System.Text.Json.Serialization.JsonPropertyName("cursor")] + public string? Cursor { get; set; } + + /// + /// 获取或设置分页每页数量。 + /// + [Newtonsoft.Json.JsonProperty("limit")] + [System.Text.Json.Serialization.JsonPropertyName("limit")] + public int? Limit { get; set; } + } +} diff --git a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatListResponse.cs b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatListResponse.cs new file mode 100644 index 00000000..4fbb002f --- /dev/null +++ b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatListResponse.cs @@ -0,0 +1,29 @@ +namespace SKIT.FlurlHttpClient.Wechat.Work.Models +{ + /// + /// 表示 [POST] /cgi-bin/wedoc/smartsheet/groupchat/list 接口的响应。 + /// + public class CgibinWedocSmartSheetGroupChatListResponse : WechatWorkResponse + { + /// + /// 获取或设置群聊 ID 列表。 + /// + [Newtonsoft.Json.JsonProperty("chat_id_list")] + [System.Text.Json.Serialization.JsonPropertyName("chat_id_list")] + public string[] GroupChatIdList { get; set; } = default!; + + /// + /// 获取或设置分页游标。 + /// + [Newtonsoft.Json.JsonProperty("next_cursor")] + [System.Text.Json.Serialization.JsonPropertyName("next_cursor")] + public string? NextCursor { get; set; } + + /// + /// 获取或设置是否还有更多数据。 + /// + [Newtonsoft.Json.JsonProperty("has_more")] + [System.Text.Json.Serialization.JsonPropertyName("has_more")] + public bool HasMore { get; set; } + } +} diff --git a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatUpdateRequest.cs b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatUpdateRequest.cs new file mode 100644 index 00000000..ac11449d --- /dev/null +++ b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatUpdateRequest.cs @@ -0,0 +1,45 @@ +using System.Collections.Generic; + +namespace SKIT.FlurlHttpClient.Wechat.Work.Models +{ + /// + /// 表示 [POST] /cgi-bin/wedoc/smartsheet/groupchat/update 接口的请求。 + /// + public class CgibinWedocSmartSheetGroupChatUpdateRequest : WechatWorkRequest + { + /// + /// 获取或设置文档 ID。 + /// + [Newtonsoft.Json.JsonProperty("docid")] + [System.Text.Json.Serialization.JsonPropertyName("docid")] + public string DocumentId { get; set; } = string.Empty; + + /// + /// 获取或设置群聊 ID。 + /// + [Newtonsoft.Json.JsonProperty("chat_id")] + [System.Text.Json.Serialization.JsonPropertyName("chat_id")] + public string GroupChatId { get; set; } = string.Empty; + + /// + /// 获取或设置新的群主成员账号。 + /// + [Newtonsoft.Json.JsonProperty("owner")] + [System.Text.Json.Serialization.JsonPropertyName("owner")] + public string? OwnerUserId { get; set; } + + /// + /// 获取或设置添加的群成员账号列表。 + /// + [Newtonsoft.Json.JsonProperty("add_user_list")] + [System.Text.Json.Serialization.JsonPropertyName("add_user_list")] + public IList? AddedUserIdList { get; set; } + + /// + /// 获取或设置移除的群成员账号列表。 + /// + [Newtonsoft.Json.JsonProperty("del_user_list")] + [System.Text.Json.Serialization.JsonPropertyName("del_user_list")] + public IList? DeletedUserIdList { get; set; } + } +} diff --git a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatUpdateResponse.cs b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatUpdateResponse.cs new file mode 100644 index 00000000..6ae1b4cd --- /dev/null +++ b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatUpdateResponse.cs @@ -0,0 +1,9 @@ +namespace SKIT.FlurlHttpClient.Wechat.Work.Models +{ + /// + /// 表示 [POST] /cgi-bin/wedoc/smartsheet/groupchat/update 接口的响应。 + /// + public class CgibinWedocSmartSheetGroupChatUpdateResponse : WechatWorkResponse + { + } +} diff --git a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedrive/File/CgibinWedriveFileListRequest.cs b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedrive/File/CgibinWedriveFileListRequest.cs index 51e276d1..51b103bd 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedrive/File/CgibinWedriveFileListRequest.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedrive/File/CgibinWedriveFileListRequest.cs @@ -1,4 +1,4 @@ -namespace SKIT.FlurlHttpClient.Wechat.Work.Models +namespace SKIT.FlurlHttpClient.Wechat.Work.Models { /// /// 表示 [POST] /cgi-bin/wedrive/file_list 接口的请求。 @@ -27,11 +27,11 @@ public int SortType { get; set; } /// - /// 获取或设置分页起始位置。 + /// 获取或设置分页游标。 /// [Newtonsoft.Json.JsonProperty("start")] [System.Text.Json.Serialization.JsonPropertyName("start")] - public int Offset { get; set; } + public int Cursor { get; set; } /// /// 获取或设置分页每页数量。 diff --git a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedrive/File/CgibinWedriveFileListResponse.cs b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedrive/File/CgibinWedriveFileListResponse.cs index d5a158f8..f9a4ac5b 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedrive/File/CgibinWedriveFileListResponse.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinWedrive/File/CgibinWedriveFileListResponse.cs @@ -1,4 +1,4 @@ -namespace SKIT.FlurlHttpClient.Wechat.Work.Models +namespace SKIT.FlurlHttpClient.Wechat.Work.Models { /// /// 表示 [POST] /cgi-bin/wedrive/file_list 接口的响应。 @@ -120,10 +120,10 @@ public bool HasMore { get; set; } /// - /// 获取或设置翻页标记。 + /// 获取或设置分页游标。 /// [Newtonsoft.Json.JsonProperty("next_start")] [System.Text.Json.Serialization.JsonPropertyName("next_start")] - public int? NextStart { get; set; } + public int? NextCursor { get; set; } } } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatGetRequest.json new file mode 100644 index 00000000..09a085c1 --- /dev/null +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatGetRequest.json @@ -0,0 +1,4 @@ +{ + "docid": "DOCID", + "chat_id": "CHATID" +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatGetResponse.json new file mode 100644 index 00000000..98db2b90 --- /dev/null +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatGetResponse.json @@ -0,0 +1,7 @@ +{ + "errcode": 0, + "errmsg": "ok", + "name": "NAME", + "owner": "userid2", + "user_list": [ "userid1", "userid2", "userid3" ] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatListRequest.json new file mode 100644 index 00000000..7bbdea2e --- /dev/null +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatListRequest.json @@ -0,0 +1,5 @@ +{ + "docid": "DOCID", + "cursor": "CURSOR", + "limit": 2 +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatListResponse.json new file mode 100644 index 00000000..578f532f --- /dev/null +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatListResponse.json @@ -0,0 +1,7 @@ +{ + "errcode": 0, + "errmsg": "ok", + "has_more": true, + "next_cursor": "GNIJIGEO", + "chat_id_list": [ "chatid1", "chatid2" ] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatUpdateRequest.json new file mode 100644 index 00000000..d34520f1 --- /dev/null +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWedoc/SmartSheet/GroupChat/CgibinWedocSmartSheetGroupChatUpdateRequest.json @@ -0,0 +1,7 @@ +{ + "docid": "DOCID", + "chat_id": "CHATID", + "owner": "userid", + "add_user_list": [ "userid1", "userid2", "userid3" ], + "del_user_list": [ "userid3", "userid4" ] +}