feat(wxapi): 新增微信小店推客带货相关接口

This commit is contained in:
Fu Diwei
2025-06-07 22:47:25 +08:00
parent 29dc515571
commit dfc1d4e470
218 changed files with 5399 additions and 130 deletions

View File

@@ -47,11 +47,11 @@ var client = WechatApiClientBuilder.Create(options).Build();
var options = new WechatApiClientOptions()
{
// 其他配置项略
SecureApiCustomRequestPathMatcher = (url) =>
SecureApiCustomRequestPathMatcher = (path) =>
{
if (url == "/sns/auth")
if (path == "/sns/auth")
return true;
else if (url == "/sns/userinfo")
else if (path == "/sns/userinfo")
return true;
return false;