asp.net微信开发第一篇----开发者接入
以上是微信官方后台需要设置的,
以下是我们自己的程序页面对接配置的一些设置:
字段说明:
平台名称:看图片,关注公众号时显示的欢迎关注(平台名称)
APPID:这个必须和微信官网的一致
Appsecret:这个必须和微信官网的一致
Token:这个必须和微信官网的一致
授权域名:这个必须是微信官网设置的授权回调页面地址是一样的,
功能说明:这个就是关注公众号时显示的图文消息下的那几段话,
官方网址:这个就是点击关注公众号时显示的图文消息的跳转地址
关注时的图片:这个就是点击关注公众号时显示的图文消息的图片
处理方法:把字段信息保存到本地数据库,这里呢,我设置了两个,如果你关注了微信测试号本地测试时使用另外一个,真正的项目就切换到另外一个
设置好以后,还没有启用这个配置,只需点击一下设置默认(只是将状态更改为1而已)即可,随后,在页面调用的时候,调用微信服务类
代码如下:
/// <summary>
/// 获取微信公众号的AppId
/// </summary>
public static string GetAppId()
{
//获取使用中的微信配置信息
WeChatConfigService wcf = new WeChatConfigService();
WeChatConfigInfo wcfInfo = wcf.GetWeChatConfigInfoByInUse();
if (wcfInfo != null)
{
return wcfInfo.wechat_AppId.ToString();
}
return null; ;
} /// <summary>
/// 获取微信公众号的AppSecret
/// </summary>
public static string GetAppSecret()
{
//获取使用中的微信配置信息
WeChatConfigService wcf = new WeChatConfigService();
WeChatConfigInfo wcfInfo = wcf.GetWeChatConfigInfoByInUse();
if (wcfInfo != null)
{
return wcfInfo.wechat_AppSecret.ToString();
}
return null; ;
} /// <summary>
/// 获取本地设置的Token
/// </summary>
public static string GetToken()
{
//获取使用中的微信配置信息
WeChatConfigService wcf = new WeChatConfigService();
WeChatConfigInfo wcfInfo = wcf.GetWeChatConfigInfoByInUse();
if (wcfInfo != null)
{
return wcfInfo.wechat_Token.ToString();
}
return null; ;
} /// <summary>
/// 获取网页授权域名
/// </summary>
public static string GetpostUrl()
{
//获取使用中的微信配置信息
WeChatConfigService wcf = new WeChatConfigService();
WeChatConfigInfo wcfInfo = wcf.GetWeChatConfigInfoByInUse();
if (wcfInfo != null)
{
return wcfInfo.wechat_PostUrl.ToString();
}
return null; ;
} /// <summary>
/// 获取通行证
/// </summary>
/// <returns></returns>
public string GetAccessToken()
{
//获取使用中的微信配置信息
WeChatConfigService wcf = new WeChatConfigService();
WeChatConfigInfo wcfInfo = wcf.GetWeChatConfigInfoByInUse();
string appid = "";
string secret = "";
if (wcfInfo != null)
{
//初始化微信配置信息
appid = wcfInfo.wechat_AppId.ToString();
secret = wcfInfo.wechat_AppSecret.ToString();
} string url_token = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid="+appid+"&secret="+secret;
HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create(url_token);
myRequest.Method = "GET";
HttpWebResponse myResponse = (HttpWebResponse)myRequest.GetResponse();
StreamReader reader = new StreamReader(myResponse.GetResponseStream(), Encoding.UTF8);
string content = reader.ReadToEnd();
reader.Close();
return content;
}
在项目的根目录或者特定的文件夹内,创建一个ashx文件(一般处理程序文件),如图
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "text/plain"; string postString = string.Empty;
if (HttpContext.Current.Request.HttpMethod.ToUpper() == "POST")
{
using (Stream stream = HttpContext.Current.Request.InputStream)
{
Byte[] postBytes = new Byte[stream.Length];
stream.Read(postBytes, , (Int32)stream.Length);
postString = Encoding.UTF8.GetString(postBytes);
} if (!string.IsNullOrEmpty(postString))
{
ResponseXML(postString);//返回给微信用户信息
} ///加载自定义菜单
StringBuilder sb = new StringBuilder();
sb.Append("{");
sb.Append("\"button\":[ ");
sb.Append("{ ");
sb.Append("\"name\":\"好好学习\",");
sb.Append("\"sub_button\":[");
sb.Append("{ ");
sb.Append("\"type\":\"click\",");
sb.Append("\"name\":\"微学堂\", ");
sb.Append("\"key\":\"weixuetang\"");
sb.Append("},");
sb.Append("{ ");
sb.Append("\"type\":\"click\",");
sb.Append("\"name\":\"大咖说\", ");
sb.Append("\"key\":\"dakashuo\"");
sb.Append("},");
sb.Append("{ ");
sb.Append("\"type\":\"click\",");
sb.Append("\"name\":\"好书推荐\", ");
sb.Append("\"key\":\"haoshutuijian\"");
sb.Append("},");
sb.Append("{ ");
sb.Append("\"type\":\"click\",");
sb.Append("\"name\":\"讲师风采\", ");
sb.Append("\"key\":\"jiangshifengcai\"");
sb.Append("}]");
sb.Append("},");
sb.Append("{");
sb.Append("\"name\":\"天天向上\", ");
sb.Append("\"sub_button\":[");
sb.Append("{ ");
sb.Append("\"type\":\"click\",");
sb.Append("\"name\":\"看见\", ");
sb.Append("\"key\":\"kanjian\"");
sb.Append("},");
sb.Append("{ ");
sb.Append("\"type\":\"click\",");
sb.Append("\"name\":\"撩我\", ");
sb.Append("\"key\":\"liaowo\"");
sb.Append("},");
sb.Append("{ ");
sb.Append("\"type\":\"view\",");
sb.Append("\"name\":\"文化UP\", ");
sb.Append("\"url\":\"https://open.weixin.qq.com/connect/oauth2/authorize?appid="+WeiXinServer.GetAppId().ToString()+"&redirect_uri=" + HttpUtility.UrlEncode(""+WeiXinServer.GetpostUrl().ToString()+"/wenhuaup/wenhua_home.aspx") + "&response_type=code&scope=snsapi_base&state=" + new Random().Next(1000, 200000).ToString() + "#wechat_redirect\"");
sb.Append("},");
sb.Append("{ ");
sb.Append("\"type\":\"click\",");
sb.Append("\"name\":\"萝卜快来\", ");
sb.Append("\"key\":\"luobokuailai\"");
sb.Append("}]");
sb.Append("},");
sb.Append("{");
sb.Append("\"name\":\"员工自助\",");
sb.Append("\"sub_button\":[");
sb.Append("{ ");
sb.Append("\"type\":\"click\",");
sb.Append("\"name\":\"我的薪资\", ");
sb.Append("\"key\":\"mysalary\"");
sb.Append("},");
sb.Append("{ ");
sb.Append("\"type\":\"view\",");
sb.Append("\"name\":\"个人中心\", ");
sb.Append("\"url\":\"https://open.weixin.qq.com/connect/oauth2/authorize?appid=" + WeiXinServer.GetAppId().ToString() + "&redirect_uri=" + HttpUtility.UrlEncode(""+WeiXinServer.GetpostUrl()+"/UserLogin.aspx") + "&response_type=code&scope=snsapi_base&state=" + new Random().Next(1000, 200000).ToString() + "#wechat_redirect\"");
sb.Append("},");
sb.Append("{ ");
sb.Append("\"type\":\"view\",");
sb.Append("\"name\":\"在线提问\", ");
sb.Append("\"url\":\"https://open.weixin.qq.com/connect/oauth2/authorize?appid=" + WeiXinServer.GetAppId().ToString() + "&redirect_uri=" + HttpUtility.UrlEncode(""+WeiXinServer.GetpostUrl()+"/UserCenter/question/MyQuestion.aspx") + "&response_type=code&scope=snsapi_base&state=" + new Random().Next(1000, 200000).ToString() + "#wechat_redirect\"");
sb.Append("}]");
sb.Append("}]");
sb.Append("}"); //自定义菜单token的获取 是用 下面的两个参数 获取的 不能直接用 公众平台的token
string to = GetAccessToken();
//本人不喜欢 后台 json的操作 直接截取就可以了 得到的就是 token 或者 自己 获取 json的token
to = to.Substring(17, to.Length - 37);
//加载菜单
string i = GetPage("https://api.weixin.qq.com/cgi-bin/menu/create?access_token=" + to, sb.ToString());
}
else
{
Auth(); //微信接入的测试
} } /// <summary>
/// 获取通行证
/// </summary>
/// <returns></returns>
public string GetAccessToken()
{
string url_token = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=" + WeiXinServer.GetAppId().ToString() + "&secret=" + WeiXinServer.GetAppSecret().ToString();
HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create(url_token);
myRequest.Method = "GET";
HttpWebResponse myResponse = (HttpWebResponse)myRequest.GetResponse();
StreamReader reader = new StreamReader(myResponse.GetResponseStream(), Encoding.UTF8);
string content = reader.ReadToEnd();
reader.Close();
return content;
}/// <summary>
/// 加载菜单项
/// </summary>
/// <param name="p"></param>
/// <param name="postData"></param>
/// <returns></returns>
private string GetPage(string p, string postData)
{
Stream outstream = null;
Stream instream = null;
StreamReader sr = null;
HttpWebResponse response = null;
HttpWebRequest request = null;
Encoding encoding = Encoding.UTF8;
byte[] data = encoding.GetBytes(postData);
// 准备请求...
try
{
// 设置参数
request = WebRequest.Create(p) as HttpWebRequest;
CookieContainer cookieContainer = new CookieContainer();
request.CookieContainer = cookieContainer;
request.AllowAutoRedirect = true;
request.Method = "POST";
request.ContentType = "application/x-www-form-urlencoded";
request.ContentLength = data.Length;
outstream = request.GetRequestStream();
outstream.Write(data, , data.Length);
outstream.Close();
//发送请求并获取相应回应数据
response = request.GetResponse() as HttpWebResponse;
//直到request.GetResponse()程序才开始向目标网页发送Post请求
instream = response.GetResponseStream();
sr = new StreamReader(instream, encoding);
//返回结果网页(html)代码
string content = sr.ReadToEnd();
string err = string.Empty;
return content;
}
catch (Exception ex)
{
string err = ex.Message;
return string.Empty;
}
} /// <summary>
/// 获取参数进行认证
/// </summary>
private void Auth()
{
string token = WeiXinServer.GetToken().ToString();//你申请的时候填写的Token,必须和微信上的保持一致 string echoString = HttpContext.Current.Request.QueryString["echoStr"];
string signature = HttpContext.Current.Request.QueryString["signature"];
string timestamp = HttpContext.Current.Request.QueryString["timestamp"];
string nonce = HttpContext.Current.Request.QueryString["nonce"]; if (CheckSignature(token, signature, timestamp, nonce))
{
if (!string.IsNullOrEmpty(echoString))
{
HttpContext.Current.Response.Write(echoString);
HttpContext.Current.Response.End();
}
} }
/// <summary>
/// 对微信传入参数进行封装到数组,拼接字符串,进行加密操作
/// </summary>
/// <param name="token"></param>
/// <param name="signature"></param>
/// <param name="timestamp"></param>
/// <param name="nonce"></param>
/// <returns></returns>
private bool CheckSignature(string token, string signature, string timestamp, string nonce)
{
string[] ArrTmp = { token, timestamp, nonce };//将参数放进数组 Array.Sort(ArrTmp);//对数组进行排序
string tmpStr = string.Join("", ArrTmp);//将数组进行拼接
///对拼接后的字符串进行加密操作
tmpStr = FormsAuthentication.HashPasswordForStoringInConfigFile(tmpStr, "SHA1");
//转换成小写形式
tmpStr = tmpStr.ToLower();
//比对成功返回
if (tmpStr == signature)
{
return true;
}
else
{
return false;
}
} /// <summary>
/// 点击关注平台后,主动发送给用户关注后的消息推送
/// </summary>
/// <param name="requestXML"></param>
private void SendWelComeMsg(RequestXML requestXML)
{
String responseContent = String.Empty; string newdate = DateTime.Now.Subtract(new DateTime(1970, 1, 1, 8, 0, 0)).TotalSeconds.ToString(); string PUrlfileName = "";
string companyName = "";
string description = "";
string companywebsite = ""; //获取使用中的微信配置信息
WeChatConfigService wcf = new WeChatConfigService();
WeChatConfigInfo wcfInfo = wcf.GetWeChatConfigInfoByInUse();
if (wcfInfo != null)
{
//初始化微信配置信息
PUrlfileName = WeiXinServer.GetpostUrl().ToString() + "/img/focus/" + wcfInfo.focus_Image.ToString();
companyName = wcfInfo.wechat_Name.ToString();
description = wcfInfo.description.ToString();
companywebsite = wcfInfo.company_website.ToString();
} responseContent = string.Format(Message_News_Main, requestXML.FromUserName, requestXML.ToUserName, newdate, "1",
string.Format(Message_News_Item, "欢迎关注" + companyName, description, PUrlfileName, companywebsite)); HttpContext.Current.Response.ContentType = "text/xml";
HttpContext.Current.Response.ContentEncoding = Encoding.UTF8;
HttpContext.Current.Response.Write(responseContent);
}
asp.net微信开发第一篇----开发者接入的更多相关文章
- asp.net微信开发第二篇----消息应答
当普通微信用户向公众账号发消息时,微信服务器将POST消息的XML数据包到开发者填写的URL上. 请注意: 1.关于重试的消息排重,推荐使用msgid排重. 2.微信服务器在五秒内收不到响应会断掉连接 ...
- asp.net微信开发第九篇----模板消息的使用
微信平台的模板消息,使用起来非常好,效果如下: 和平时我们微信中关注信用卡官方微信,如果消费了,信用卡官方微信就返回一个模板消息给我们告知,余额还有多少,消费了多少. 使用的步骤,我只简单介绍了怎么使 ...
- iOS开发——高级技术精选&底层开发之越狱开发第一篇
底层开发之越狱开发第一篇 做越狱开发也有一些时间了,有很多东西想总结一下,希望给他人一些借鉴,也是自己对过去开发经历的一些总结.个人不推荐使用盗版,这里主要以技术介绍为主. 这个系列里面主要介绍怎样进 ...
- 微信支付 第一篇 JSAPI 支付配置与获取 OpenID
开通微信支付支付产品 首先要在微信支付申请成为 微信支付商户. 选择开通具体的支付产品 成为微信支付商户后在管理后台选择微信支付中的具体支付产品并申请开通如 JSAPI . 将支付商户与公众号关联 这 ...
- 使用delphi+intraweb进行微信开发1--微信平台接入
示例代码已经放出!请移步使用delphi+intraweb进行微信开发1~4代码示例进行下载,虽为示例代码但是是从我项目中移出来的,封装很完备适于自行扩展和修改. iw14.0.50来了,在新的版本中 ...
- Android百度地图开发-第一篇:申请、搭建百度地图
一.前言 这是第一篇关于Android使用百度地图的学习记录,主要记录: 1.在百度地图开发者平台上申请API Key. 2.在自己的应用中加入百度地图的Android版SDK. 3.在自己的应用中显 ...
- ASP.NET MVC3开发-数据库篇之CodeFisrt开发(一)
本文讲述了在ASP.NET MVC3开发中M层使用Code Fisrt如何进行开发,由于作者对ASP.NET MVC3的学习不是很深,所以写的都是些基本的内容(写的如有不正确的地方请评论指正),适合初 ...
- asp.net 微信开发(二)
本节我们主要讲解微信的调试: 前言:平时我们开发项目都是在本地就能进行项目的开发调试,但是在微信上就有难度了,因为微信的数据需要从微信服务器上面拿,所以就需要直接在网站上调试了,接下来就相关的一些个人 ...
- asp.net微信开发第五篇----用户分组管理
上一篇已讲解到新建用户分组,移动用户到分组的功能,这一章主要讲解修改分组名称和删除分组 开发者可以使用接口,对公众平台的分组进行查询.创建.修改.删除等操作,也可以使用接口在需要时移动用户到某个分组. ...
随机推荐
- Lucene查询条数限制
运用Lucene进行索引,在查询的时候是有条数限制的 public virtual TopFieldDocs Search(Query query, Filter filter, int n, Sor ...
- 你不知道的JavaScript(作用域和闭包)
作用域和闭包 ・作用域 引擎:从头到尾负责整个JavaScript的编译及执行过程. 编译器:负责语法分析及代码生成等. 作用域:负责收集并维护由所有声明的标识符(变量)组成的一系列查询,并实施一套非 ...
- SPSS与聚类分析
1.进行K均值聚类分析时需要线标准化处理,抛弃量纲差异,比如说数值型变量有的以千记有的以百分数记.2.层次聚类就是先把每个样本都看成一个独立的类:聚类特征(Clustering Feature, CF ...
- angular2 学习笔记 ( Http 请求)
refer : https://angular.cn/docs/ts/latest/guide/server-communication.html https://xgrommx.github.io/ ...
- poj 1573Robot Motion
http://poj.org/problem?id=1573 #include<cstdio> #include<cstring> #include<algorithm& ...
- 利用Tree命令生成磁盘文件列表
命令原型:D:/>tree /? 以图形显示驱动器或路径的文件夹结构.TREE [drive:][path] [/F] [/A]/F 显示每个文件夹中文件的名称./A 使用 ASCII 字符,而 ...
- jquery $.each() 小探
<html> <head> <title> jquery each使用 </title> <script type='text/javascrip ...
- Ubuntu 14.04 升级后 VPN 无法连接的问题
如果不知道怎么配置 VPN Server(IPSEC + L2TP),可以看这篇文章(英文). 问题表现: 将 Ubuntu 12.04 通过自动更新 —— do-release-upgrade —— ...
- java容器类总结
1.java容器分类图 说明:左图为简化图(其中粗线部分是重点的容器),右图为完整容器分类图 2.容器类接口和抽象容器类 2.1 说明 容器接口是容器 ...
- Java---练习(面试题) :字符串截取(2-最终版)
在java中,字符串"abcd"与字符串"ab你好"的长度是一样,都是四个字符. 但对应的字节数不同,一个汉字占两个字节. 定义一个方法,按照指定的字节数来取子 ...