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

@@ -183,11 +183,12 @@
<summary>[展开查看]</summary>
| | 微信 API | 备注 |
| :-: | :------------: | :--: |
| √ | 微信小店 | |
| √ | 达人带货 | |
| √ | 带货助手 | |
| | 微信 API | 备注 |
| :-: | :------: | :--: |
| √ | 微信小店 | |
| √ | 达人带货 | |
| √ | 推客带货 | |
| √ | 带货助手 | |
</details>

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;