首页 > 课堂 > 小程序 > 正文

C#微信小程序服务端怎么获取用户解密信息?

2020-03-21 16:19:24
字体:
来源:转载
供稿:网友

C#微信小程序服务端怎么获取用户解密信息?

 

  1. using AIOWeb.Models;   
  2. using Newtonsoft.Json;   
  3. using Newtonsoft.Json.Linq;   
  4. using System;   
  5. using System.Collections.Generic;   
  6. using System.Data;   
  7. using System.Data.SqlClient;   
  8. using System.Linq;   
  9. using System.Web;   
  10. namespace AIOWeb   
  11. {   
  12.     /// <summary>   
  13.     /// wxapi 的摘要说明   
  14.     /// </summary>   
  15.     public class wxapi : IHttpHandler   
  16.     {   
  17.         public void ProcessRequest(HttpContext context)   
  18.         {   
  19.             context.Response.ContentType = "text/plain";   
  20.             string code = "";   
  21.             string iv = "";   
  22.             string encryptedData = "";   
  23.             try  
  24.             {   
  25.                 code = HttpContext.Current.Request.QueryString["code"].ToString();   
  26.                 iv = HttpContext.Current.Request.QueryString["iv"].ToString(); 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表