mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-12-29 18:04:42 +08:00
feat(wxapi): 新增微信小店推客带货相关接口
This commit is contained in:
@@ -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