mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2026-03-10 00:13:36 +08:00
feat(wxapi): 新增微信小店推客带货相关接口
This commit is contained in:
@@ -183,11 +183,12 @@
|
||||
|
||||
<summary>[展开查看]</summary>
|
||||
|
||||
| | 微信 API | 备注 |
|
||||
| :-: | :------------: | :--: |
|
||||
| √ | 微信小店 | |
|
||||
| √ | 达人带货 | |
|
||||
| √ | 带货助手 | |
|
||||
| | 微信 API | 备注 |
|
||||
| :-: | :------: | :--: |
|
||||
| √ | 微信小店 | |
|
||||
| √ | 达人带货 | |
|
||||
| √ | 推客带货 | |
|
||||
| √ | 带货助手 | |
|
||||
|
||||
</details>
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user