fix(wxapi): 修复获取小程序订阅消息公共模板标题时出现的200019错误

This commit is contained in:
Orches 2022-01-18 18:07:54 +08:00 committed by GitHub
parent 51dba53b67
commit 32f031247a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -112,7 +112,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Api
IFlurlRequest flurlReq = client
.CreateRequest(request, HttpMethod.Get, "wxaapi", "newtmpl", "getpubtemplatetitles")
.SetQueryParam("access_token", request.AccessToken)
.SetQueryParam("ids", "\"" + string.Join(",", request.CategoryIdList) + "\"")
.SetQueryParam("ids", string.Join(",", request.CategoryIdList))
.SetQueryParam("start", request.Offset)
.SetQueryParam("limit", request.Limit);