C# 微信小程序获取群id

这篇具有很好参考价值的文章主要介绍了C# 微信小程序获取群id。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

前提

有个需求,需要限制小程序的抽奖只能在某个群内,需要知道谁在群里面,但是微信并没有提供谁在群里面的方法,不过提供了获取群id的方法,这样加上限制分享就能保证群里的参加,即时分享出去了,判断来源的时候也不是来自于群了,就不允许用户参与。

需要的方法

wx.login
C# 微信小程序获取群id,dotnet,微信小程序,c#,微信小程序,开发语言

wx.getGroupEnterInfo
C# 微信小程序获取群id,dotnet,微信小程序,c#,微信小程序,开发语言
加密解密数据
C# 微信小程序获取群id,dotnet,微信小程序,c#,微信小程序,开发语言

解密解密官方代码c++、php、node、python

没有java和c#的代码,目前需要c#代码,java的加密解密参考https://blog.csdn.net/qq_36437991/article/details/135553304

解密流程

C# 微信小程序获取群id,dotnet,微信小程序,c#,微信小程序,开发语言

需要的nuget包

skit.flurlhttpclient.wechat.api.2.35.0

实现代码

微信小程序

wxml

<view style="width: 80%;margin: 0 auto;margin-top: 30rpx;">
  <text>微信群id:</text>
  <text>{{groupId}}</text>
  <view>
  <button bind:tap="copyGroupId">复制</button>
  </view>
</view>

js

// pages/wechatgroupinfo/wechatgroupinfo.js
Page({

  /**
   * 页面的初始数据
   */
  data: {
    groupId: ""
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad(options) {
    wx.setNavigationBarTitle({
      title: '获取微信群信息',
    })
  },

  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady() {
    let that = this;
    wx.login({
      success: (res) => {
        if (res.errMsg == "login:ok") {
          const code = res.code;
          wx.getGroupEnterInfo({
            success(resData) {
              if (resData.errMsg === "getGroupEnterInfo:ok") {
                const iv = resData.iv;
                const encryptedData = resData.encryptedData;
                that.getWechatGroupId(code, iv, encryptedData);
              } else {
                wx.showToast({
                  title: 'wx.getGroupEnterInfo出错',
                })
              }
            },
            fail() {
              wx.showToast({
                title: 'wx.getGroupEnterInfo:' + resData.errMsg,
              })
            }
          })
        } else {
          wx.showToast({
            title: 'wx.login:' + res.errMsg,
          })
        }
      },
      fail: () => {
        wx.showToast({
          title: 'wx.login出错',
        })
      }
    })

  },

  /**
   * 获取微信群id
   * @param {String} code 登录的id
   * @param {String} iv 偏移量
   * @param {String} encryptData 加密的数据
   * @returns 微信群id
   */
  getWechatGroupId(code, iv, encryptData) {
    let that = this;
    wx.request({
      method: "POST",
      url: 'http://localhost:5000/v1/user/GetWechatGroupId',
      data: JSON.stringify({
        code,
        iv,
        encryptData
      }),
      success: (response) => {
        console.log(response);
        if (response.data && response.data.success) {
          that.setData({
            groupId: response.data.response
          })
        } else {
          wx.showToast({
            title: response.data.msg,
          })
        }
      },
      fail: () => {
        wx.showToast({
          title: '后台获取微信群id失败',
        })
      }
    })
  },
  /**
   * 复制微信群组
   */
  copyGroupId() {
    wx.setClipboardData({
      data: this.data.groupId,
      success(res) {
        wx.showToast({
          title: '复制成功',
        })
      }
    })
  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow() {

  },

  /**
   * 生命周期函数--监听页面隐藏
   */
  onHide() {

  },

  /**
   * 生命周期函数--监听页面卸载
   */
  onUnload() {

  },

  /**
   * 页面相关事件处理函数--监听用户下拉动作
   */
  onPullDownRefresh() {

  },

  /**
   * 页面上拉触底事件的处理函数
   */
  onReachBottom() {

  },

  /**
   * 用户点击右上角分享
   */
  onShareAppMessage() {

  }
})

C#后台

获取微信群id接口

/// <summary>
/// 获取微信的群组id
/// </summary>
/// <returns></returns>
[HttpPost]
public async Task<MessageModel<string>> GetWechatGroupId([FromBody] GetWechatGroupIdParamModel param)
{
    var result = new MessageModel<string>();
    var res = await weChatMiniProgramHelper.GetWechatGroupId(param.Code, param.Iv, param.EncryptData);
    result.Success = !string.IsNullOrEmpty(res);
    result.Msg = result.Success ? "成功" : "失败";
    result.Response = res;
    return result;
}

/// <summary>
/// 单例模式注入
/// </summary>
public class WeChatMiniProgramClient
{
    public WechatApiClient Instance { get; private set; }

    /// <summary>
    /// 构造函数注入
    /// </summary>
    /// <param name="wechatConfig"></param>
    public WeChatMiniProgramClient(IOptions<WechatConfigModel> wechatConfig)
    {
        var options = new WechatApiClientOptions()
        {
            AppId = wechatConfig.Value.MiniProgramAppId,
            AppSecret = wechatConfig.Value.MiniProgramAppSecret,
            MidasAppKey = "",//米大师相关服务 AppKey,不用则不填
            ImmeDeliveryAppKey = "",//即时配送相关服务 AppKey,不用则不填
            ImmeDeliveryAppSecret = ""//即时配送相关服务 AppSecret,不用则不填
        };
        Instance = new WechatApiClient(options);
    }
}

//weChatMiniProgramHelper下的方法

/// <summary>
/// 获取微信群id
/// </summary>
/// <param name="code"></param>
/// <param name="iv"></param>
/// <param name="encryptData"></param>
/// <returns></returns>
public async Task<string> GetWechatGroupId(string code, string iv, string encryptData)
{
    if (string.IsNullOrEmpty(iv) || iv.Length != 24)
    {
        return string.Empty;
    }
    if (string.IsNullOrEmpty(encryptData) || encryptData.Length < 1)
    {
        return string.Empty;
    }
    //WechatApiClient客户端
    var client = weChatMiniProgramClient.Instance;
    try
    {
        var userLoginRequest = new SnsJsCode2SessionRequest();
        userLoginRequest.JsCode = code;
        var loginInfo = await client.ExecuteSnsJsCode2SessionAsync(userLoginRequest);
        if (!loginInfo.IsSuccessful())
        {
            return string.Empty;
        }
        var sessionKey = loginInfo.SessionKey;
        if (string.IsNullOrEmpty(sessionKey) || sessionKey.Length != 24)
        {
            return string.Empty;
        }
        var encryptDataDecode = Convert.FromBase64String(encryptData);
        var jsonStr = AESUtility.DecryptWithCBC(sessionKey, iv, encryptData);
        if (string.IsNullOrEmpty(jsonStr))
        {
            return string.Empty;
        }
        var openGidDic = JsonConvert.DeserializeObject<Dictionary<string, string>>(jsonStr);
        return openGidDic["opengid"];
    }
    catch (Exception ex)
    {
        logger.LogError($"获取微信群id失败\r\n{ex.Message}");
        throw new Exception(ex.Message, ex.InnerException);
    }
}

测试
C# 微信小程序获取群id,dotnet,微信小程序,c#,微信小程序,开发语言
C# 微信小程序获取群id,dotnet,微信小程序,c#,微信小程序,开发语言
如果直接加密解密会报错Specified initialization vector (IV) does not match the block size for this algorithm,需要先base64解码一下
AESUtility.cs源代码,来自skit.flurlhttpclient.wechat文章来源地址https://www.toymoban.com/news/detail-793838.html

/// <summary>
/// 基于 CBC 模式解密数据。
/// </summary>
/// <param name="keyBytes">AES 密钥字节数组。</param>
/// <param name="ivBytes">加密使用的初始化向量字节数组。</param>
/// <param name="cipherBytes">待解密数据字节数组。</param>
/// <returns>解密后的数据字节数组。</returns>
public static byte[] DecryptWithCBC(byte[] keyBytes, byte[] ivBytes, byte[] cipherBytes)
{
    if (keyBytes == null) throw new ArgumentNullException(nameof(keyBytes));
    if (ivBytes == null) throw new ArgumentNullException(nameof(ivBytes));
    if (cipherBytes == null) throw new ArgumentNullException(nameof(cipherBytes));

    using (SymmetricAlgorithm aes = Aes.Create())
    {
        aes.Mode = CipherMode.CBC;
        aes.Padding = PaddingMode.PKCS7;
        aes.Key = keyBytes;
        aes.IV = ivBytes;

        using ICryptoTransform transform = aes.CreateDecryptor();
        return transform.TransformFinalBlock(cipherBytes, 0, cipherBytes.Length);
    }
}

/// <summary>
/// 基于 CBC 模式解密数据。
/// </summary>
/// <param name="encodingKey">经 Base64 编码后的 AES 密钥。</param>
/// <param name="encodingIV">经 Base64 编码后的 AES 初始化向量。</param>
/// <param name="encodingCipherText">经 Base64 编码后的待解密数据。</param>
/// <returns>解密后的文本数据。</returns>
public static string DecryptWithCBC(string encodingKey, string encodingIV, string encodingCipherText)
{
    if (encodingKey == null) throw new ArgumentNullException(nameof(encodingKey));
    if (encodingCipherText == null) throw new ArgumentNullException(nameof(encodingCipherText));

    byte[] plainBytes = DecryptWithCBC(
        keyBytes: Convert.FromBase64String(encodingKey),
        ivBytes: Convert.FromBase64String(encodingIV),
        cipherBytes: Convert.FromBase64String(encodingCipherText)
    );
    return Encoding.UTF8.GetString(plainBytes);
}

/// <summary>
/// 基于 CBC 模式加密数据。
/// </summary>
/// <param name="keyBytes">AES 密钥字节数组。</param>
/// <param name="ivBytes">加密使用的初始化向量字节数组。</param>
/// <param name="plainBytes">待加密数据字节数组。</param>
/// <returns>加密后的数据字节数组。</returns>
public static byte[] EncryptWithCBC(byte[] keyBytes, byte[] ivBytes, byte[] plainBytes)
{
    if (keyBytes == null) throw new ArgumentNullException(nameof(keyBytes));
    if (ivBytes == null) throw new ArgumentNullException(nameof(ivBytes));
    if (plainBytes == null) throw new ArgumentNullException(nameof(plainBytes));

    using (SymmetricAlgorithm aes = Aes.Create())
    {
        aes.Mode = CipherMode.CBC;
        aes.Padding = PaddingMode.PKCS7;
        aes.Key = keyBytes;
        aes.IV = ivBytes;

        using ICryptoTransform transform = aes.CreateEncryptor();
        return transform.TransformFinalBlock(plainBytes, 0, plainBytes.Length);
    }
}

/// <summary>
/// 基于 CBC 模式加密数据。
/// </summary>
/// <param name="encodingKey">经 Base64 编码后的 AES 密钥。</param>
/// <param name="encodingIV">经 Base64 编码后的 AES 初始化向量。</param>
/// <param name="plainText">待加密文本。</param>
/// <returns>经 Base64 编码的加密后的数据。</returns>
public static string EncryptWithCBC(string encodingKey, string encodingIV, string plainText)
{
    if (encodingKey == null) throw new ArgumentNullException(nameof(encodingKey));
    if (plainText == null) throw new ArgumentNullException(nameof(plainText));

    byte[] plainBytes = EncryptWithCBC(
        keyBytes: Convert.FromBase64String(encodingKey),
        ivBytes: Convert.FromBase64String(encodingIV),
        plainBytes: Encoding.UTF8.GetBytes(plainText)
    );
    return Convert.ToBase64String(plainBytes);
}

到了这里,关于C# 微信小程序获取群id的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 微信小程序接口调用凭证(获取token)auth.getAccessToken接口开发

    小程序接口调用凭证auth.getAccessToken接口规范参考链接 appid :小程序 appId secret :小程序 appSecret grant_type :授权类型,填写 client_credential access_token :获取到的凭证 expires_in :凭证有效时间,单位:秒。目前是7200秒之内的值。 errcode :错误码***(异常情况才会有错误码返回,

    2024年02月15日
    浏览(63)
  • UniApp项目中 使用微信小程序原生语言 进行开发

    wxcomponents 下放的是微信小程序原生代码写的组件。我进行了封装 在你下uniApp 项目的根目录创建一个 wxcomponents 名字千万不要错 京东、支付宝灯参考下面图片 官方文档也有介绍 然后在你需要引入原生功能的页面里面引入你的组件(我这里提前已经放过来了。在上面图可看到

    2024年02月04日
    浏览(75)
  • 【微信小程序】selectComponent(#id)失败得到是null分析

    小程序中无法像网页中轻易的 获取DOM元素 ,需要依靠 this.selectComponent(#id) this.selectAllComponents(#id) 本文主要针对 this.selectComponent 获取DOM元素失败的原因 上图为我的业务代码,由图可知,通过for循环遍历渲染 card 自定义组件, 每个组件的id都为666 这里获取一下DOM元素并打印,

    2024年02月09日
    浏览(48)
  • 微信小程序使用openid生成唯一数字ID(哈希算法)

    引入 crypto-js 库和云函数所需的模块。 定义了一个 convertToUniqueDigits 函数,接收两个参数:需要转换的字符串和返回的结果的数字位数。         在函数内部,使用 sha256 函数将字符串转换为哈希值,然后将哈希值转换为数字,并将结果映射到指定的位数。         如

    2024年02月16日
    浏览(42)
  • 查看微信小程序的原始账号ID和AppId

    略 打开一个小程序,进入小程序后点击右上角 三个点 点击小程序的名字 点击更多资料 更多资料中出现原始账号ID和AppId 打开一个小程序,进入小程序后点击右上角 三个点 点击添加到桌面 回到桌面,找到图标点击右键,在右键菜单中点击属性 属性中出现AppId s s s

    2024年02月13日
    浏览(194)
  • 【linux下安装运行C#程序环境】linux下安装运行C#(dotnet)程序环境

    若yum的数据源不是国内的,速度原因,建议换yum数据源:yum换源操作 先查看系统版本号: 结果: 先添加配置对应的centos版本的C#数据源(此处为7) 可点击链接找到自己需要的系统及版本 https://packages.microsoft.com/config/ 查找需要安装的dotnet-sdk版本 结果: yum安装C#依赖包(此处

    2024年02月14日
    浏览(45)
  • 微信小程序 <map>: marker id should be a number

    已经按照小程序官方文档的要求做了可是还会报错   查看官方文档发现id并不是必填,但是随便填一个数字型number就可以解决问题   按照文档中所写添加一个id 类型为number   然后就不会有报错了。 在使用小程序地图相关的APi组件时,一定要先去 小程序平台去申请权限 哦,

    2024年02月09日
    浏览(35)
  • 微信小程序获取openid,微信小程序获取手机号

    工具类

    2024年02月16日
    浏览(57)
  • 微信小程序分类图片通过id跳转到详情页,不同分类实现定向跳转

    微信小程序分类图片通过id跳转到详情页,不同分类实现定向跳转 1.实现循环展示排列 inde.wxml index.wxss index.js 页面展示 2.跳转到大分类页面 class.wxml class.js 结果:

    2024年02月11日
    浏览(60)
  • 【微信小程序-原生开发】实用教程22 - 绘制图表(引入 echarts,含图表的懒加载-获取到数据后再渲染图表,多图表加载等技巧)

    微信小程序中使用 echarts 需使用官方提供的 ec-canvas 组件 点击下方链接,下载 ec-canvas 组件 https://gitcode.net/mirrors/ecomfe/echarts-for-weixin/-/tree/master 将其中的 ec-canvas 文件夹拷贝到微信小程序的分包中 ( 因 ec-canvas 组件较大,约 1M,若放在主包中很容易超出 2M 的大小限制,不了解

    2024年02月09日
    浏览(55)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包