gpt4 book ai didi

使用微信助手搭建微信返利机器人流程

转载 作者:qq735679552 更新时间:2022-09-27 22:32:09 25 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章使用微信助手搭建微信返利机器人流程由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

之前做了一个淘宝客返利微信公众号,后来很多人提到过微信返利机器人,现在微信助手开发好了,可以通过微信助手接口功能实现微信返利机器人.

流程如下:


使用微信助手搭建微信返利机器人流程

下面是c#实现返利接口的部分代码:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[HttpPost]
  public async Task<ActionResult> FanliAsync(string appkey)
  {
   WeixinTBKConfigEntity configEntity = GetConfigEntity(appkey);
   if (configEntity == null )
   {
    LogHelper.WriteLog(typeof(OtherWechatController), "appkey接口验证时,appkey不存在" );
    return Content( "验证失败。appkey接口验证时,appkey不存在" );
   }
   Request.InputStream.Position = 0 ;
   Stream stream = Request.InputStream;
   string json = string.Empty;
   if (stream.Length != 0 )
   {
    StreamReader streamreader = new StreamReader(stream);
    json = streamreader.ReadToEnd();
   }
   WeChatToolMessage responseMsg = new WeChatToolMessage();
   if (string.IsNullOrEmpty(json))
   {
    return Json(responseMsg);
   }
   WeChatToolMessage msg = JsonConvert.DeserializeObject<WeChatToolMessage>(json);
   if (string.IsNullOrEmpty(msg.wxid) || string.IsNullOrEmpty(msg.content))
   {
    return Json(responseMsg);
   }
   string content = msg.content;
   string responseStr = string.Empty;
   if (content.Contains( "yangkeduo.com" ))
   {
    //访问拼多多接口
    responseStr = await GetPddCouponAsync(configEntity, msg);
   }
   else if (content.Contains( "jd.com" ))
   {
    if (!string.IsNullOrEmpty(configEntity.JdPID))
    {
     //访问京东联盟接口
     responseStr = GetJdCoupon(configEntity, msg);
   
   }
   else
   {
    //访问淘宝联盟接口
    responseStr = GetTBKCouponByPassword(configEntity, msg.content);
   }
   responseMsg.wxid = msg.wxid;
   responseMsg.content = responseStr;
   return Json(responseMsg);
  }

发布接口之后将接口地址填入微信助手“自动回复”菜单url输入框中,如下图所示:


使用微信助手搭建微信返利机器人流程

下面就可以开始查券了,是不是很简单.

使用微信助手搭建微信返利机器人流程
使用微信助手搭建微信返利机器人流程

微信助手可以到这里下载:http://blog.yshizi.cn/104.html 。

需要返利接口请加微信znana2019 。

总结 。

以上所述是小编给大家介绍的使用微信助手搭建微信返利机器人流程,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对我网站的支持! 如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢! 。

原文链接:https://www.cnblogs.com/gracexu/archive/2019/09/18/11540136.html 。

最后此篇关于使用微信助手搭建微信返利机器人流程的文章就讲到这里了,如果你想了解更多关于使用微信助手搭建微信返利机器人流程的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com