/// <summary>
/// 微信请求转发控制器
/// </summary>
[RoutePrefix("weixin")]
public class WeixinController : ApiController
{
#region 创建微信菜单 /// <summary>
/// 创建微信菜单
/// </summary>
/// <returns></returns>
[HttpPost]
[Route("menu")]
public string CreateMenu()
{
#region 菜单结构构建
ButtonGroup bg = new ButtonGroup(); string websiteUrl = WebConfigurationManager.AppSettings["WebsiteUrl"];
bg.button.Add(new SingleViewButton()
{
//url = MenuHelper.GetMenuUrl("Weixin/Index"),
url = string.Format("{0}/{1}", websiteUrl, WebConfigurationManager.AppSettings["mainPage"]),
name = "我要借款",
}); bg.button.Add(new SingleViewButton()
{
url = string.Format("{0}/{1}", websiteUrl, "FrontendMobile/public/view/main.html#appeal"),
name = "投诉建议",
});
#endregion string result = string.Empty;
try
{
CommonApi.CreateMenu(WeixinConfig.APPID, bg); result = "菜单生成成功,一般有24小时缓存时间,也可以直接取消关注再关注直接查看效果";
}
catch (WeixinException e)
{
result = e.Message;
} return result;
} /// <summary>
/// 获取微信菜单
/// </summary>
/// <returns></returns>
[HttpGet]
[Route("menu")]
public HttpResponseMessage GetMenu()
{
try
{
GetMenuResult result = CommonApi.GetMenu(WeixinConfig.APPID); return Request.CreateResponse(HttpStatusCode.OK, result);
}
catch (WeixinException e)
{
return Request.CreateErrorResponse(HttpStatusCode.InternalServerError, e.Message);
}
} /// <summary>
/// 删除菜单方法
/// </summary>
/// <returns></returns>
[HttpDelete]
[Route("menu")]
public string DeleteMenu()
{
try
{
CommonApi.DeleteMenu(WeixinConfig.APPID); return "删除成功,一般有24小时缓存时间,也可以直接取消关注再关注直接查看效果";
}
catch (WeixinException e)
{
return e.Message;
}
} #endregion #region 微信服务器消息接收及处理 /// <summary>
/// 微信后台验证地址(使用Get),微信后台的“接口配置信息”的Url填写如:http://weixin.senparc.com/weixin
/// </summary>
[HttpGet]
[Route("")]
public HttpResponseMessage Get(string signature, string timestamp, string nonce, string echostr)
{
if (CheckSignature.Check(signature, timestamp, nonce, WeixinConfig.TOKEN))
{
var result = new StringContent(echostr, UTF8Encoding.UTF8, "application/x-www-form-urlencoded");
var response = new HttpResponseMessage { Content = result };
return response;
} return Request.CreateErrorResponse(HttpStatusCode.BadRequest, "failed:" + signature + "," + CheckSignature.GetSignature(timestamp, nonce, WeixinConfig.TOKEN) + "。" +
"如果你在浏览器中看到这句话,说明此地址可以被作为微信公众账号后台的Url,请注意保持Token一致。");
} /// <summary>
/// 用户发送消息后,微信平台自动Post一个请求到这里,并等待响应XML。
/// PS:此方法为简化方法,效果与OldPost一致。
/// v0.8之后的版本可以结合Senparc.Weixin.MP.MvcExtension扩展包,使用WeixinResult,见MiniPost方法。
/// </summary>
[HttpPost]
[Route("")]
public HttpResponseMessage Post()
{
var requestQueryPairs = Request.GetQueryNameValuePairs().ToDictionary(k => k.Key, v => v.Value);
if (requestQueryPairs.Count == 0
|| !requestQueryPairs.ContainsKey("timestamp")
|| !requestQueryPairs.ContainsKey("signature")
|| !requestQueryPairs.ContainsKey("nonce")
|| !CheckSignature.Check(requestQueryPairs["signature"], requestQueryPairs["timestamp"],
requestQueryPairs["nonce"], WeixinConfig.TOKEN))
{
return Request.CreateErrorResponse(HttpStatusCode.Forbidden, "未授权请求");
}
PostModel postModel = new PostModel
{
Signature = requestQueryPairs["signature"],
Timestamp = requestQueryPairs["timestamp"],
Nonce = requestQueryPairs["nonce"]
};
postModel.Token = WeixinConfig.TOKEN;
postModel.EncodingAESKey = WeixinConfig.ENCODINGAESKEY;//根据自己后台的设置保持一致
postModel.AppId = WeixinConfig.APPID;//根据自己后台的设置保持一致 //v4.2.2之后的版本,可以设置每个人上下文消息储存的最大数量,防止内存占用过多,如果该参数小于等于0,则不限制
var maxRecordCount = 10; //自定义MessageHandler,对微信请求的详细判断操作都在这里面。
var messageHandler = new CusMessageHandler(Request.Content.ReadAsStreamAsync().Result, postModel, maxRecordCount); try
{
#if DEBUG
Log.Logger.Debug(messageHandler.RequestDocument.ToString());
if (messageHandler.UsingEcryptMessage)
{
Log.Logger.Debug(messageHandler.EcryptRequestDocument.ToString());
}
#endif
/* 如果需要添加消息去重功能,只需打开OmitRepeatedMessage功能,SDK会自动处理。
* 收到重复消息通常是因为微信服务器没有及时收到响应,会持续发送2-5条不等的相同内容的RequestMessage*/
messageHandler.OmitRepeatedMessage = true; //执行微信处理过程
messageHandler.Execute(); #if DEBUG
if (messageHandler.ResponseDocument != null)
{
Log.Logger.Debug(messageHandler.ResponseDocument.ToString());
} if (messageHandler.UsingEcryptMessage)
{
//记录加密后的响应信息
Log.Logger.Debug(messageHandler.FinalResponseDocument.ToString());
}
#endif var resMessage = Request.CreateResponse(HttpStatusCode.OK);
resMessage.Content = new StringContent(messageHandler.ResponseDocument.ToString());
resMessage.Content.Headers.ContentType = new MediaTypeHeaderValue("application/xml"); return resMessage;
}
catch (Exception ex)
{
Log.Logger.Error("处理微信请求出错:", ex);
return Request.CreateErrorResponse(HttpStatusCode.InternalServerError, "处理微信请求出错");
}
} #endregion #region JSSDK相关 /// <summary>
/// 获取JSSDK参数信息
/// </summary>
/// <param name="url">获取签名所用的URL</param>
/// <returns></returns>
[HttpGet]
[Route("JSSDK/{*url}")]
public HttpResponseMessage GetJSSDK(string url)
{
if (!HttpContext.Current.SideInWeixinBroswer())
{
return Request.CreateErrorResponse(HttpStatusCode.Forbidden, "请通过微信端登录");
} try
{
//获取时间戳
var timestamp = JSSDKHelper.GetTimestamp();
//获取随机码
var nonceStr = JSSDKHelper.GetNoncestr();
string ticket = AccessTokenContainer.TryGetJsApiTicket(WeixinConfig.APPID, WeixinConfig.APPSECRET);
//获取签名
var signature = JSSDKHelper.GetSignature(ticket, nonceStr, timestamp, HttpUtility.UrlDecode(url)); return Request.CreateResponse(HttpStatusCode.OK, new
{
appId = WeixinConfig.APPID,
timestamp = timestamp,
nonceStr = nonceStr,
signature = signature
});
}
catch (Exception e)
{
Log.Logger.Error("获取JSSDK信息出错:", e); return Request.CreateErrorResponse(HttpStatusCode.InternalServerError, "获取JSSDK信息出错");
}
} #endregion /// <summary>
/// 微信菜单导航
/// </summary>
/// <param name="code"></param>
/// <param name="state"></param>
/// <returns></returns>
[HttpGet]
[Route("index")]
public HttpResponseMessage Index(string code, string state)
{
var response = Request.CreateResponse(HttpStatusCode.Redirect);
try
{
var result = OAuthApi.GetAccessToken(WeixinConfig.APPID, WeixinConfig.APPSECRET, code);
response.Headers.Location = new Uri(string.Format("{0}?openId={1}", WebConfigurationManager.AppSettings["mainPage"], result.openid), UriKind.Relative);
}
catch (WeixinException e)
{
Log.Logger.Error("OAuth2授权失败:", e);
response.Headers.Location = new Uri(WebConfigurationManager.AppSettings["mainPage"], UriKind.Relative);
} return response;
}
}

asp.net web api集成微信服务(使用Senparc微信SDK)的更多相关文章

  1. MVC项目实践,在三层架构下实现SportsStore-09,ASP.NET MVC调用ASP.NET Web API的查询服务

    ASP.NET Web API和WCF都体现了REST软件架构风格.在REST中,把一切数据视为资源,所以也是一种面向资源的架构风格.所有的资源都可以通过URI来唯一标识,通过对资源的HTTP操作(G ...

  2. 使用ASP.NET web API创建REST服务(二)

    Creating a REST service using ASP.NET Web API A service that is created based upon the architecture ...

  3. 使用ASP.NET web API创建REST服务(三)

    本文档来源于:http://www.cnblogs.com/madyina/p/3390773.html Creating a REST service using ASP.NET Web API A ...

  4. ASP.NET Web API 框架研究 服务容器 ServicesContainer

    ServicesContainer是一个服务的容器,可以理解为—个轻量级的IoC容器,其维护着一个服务接口类型与服务实例之间的映射关系,可以根据服务接口类型获取对应的服务实例.构成ASP.NET We ...

  5. asp.net web api集成微信服务(使用Senparc微信SDK)- z

    /// <summary> /// 微信请求转发控制器 /// </summary> [RoutePrefix("weixin")] public clas ...

  6. 使用 SoapUI 测试ASP.NET Web API

    我们为不同的目的开发了很多web服务,经过授权的用户就可以访问和使用这些web服务.soapUI 是一个强大的测试web服务的工具,他不仅可以测试SOAP服务,他也支持测试RESTful服务.在这里我 ...

  7. Asp.Net Web API 2第四课——HttpClient消息处理器

    Asp.Net Web API 导航   Asp.Net Web API第一课:入门http://www.cnblogs.com/aehyok/p/3432158.html Asp.Net Web A ...

  8. 【ASP.NET Web API教程】2.1 创建支持CRUD操作的Web API

    原文 [ASP.NET Web API教程]2.1 创建支持CRUD操作的Web API 2.1 Creating a Web API that Supports CRUD Operations2.1 ...

  9. 【ASP.NET Web API教程】2 创建各种Web API

    原文 [ASP.NET Web API教程]2 创建各种Web API Chapter 2: Creating Web APIs第2章 创建各种Web API 本文引自:http://www.asp. ...

随机推荐

  1. MFC 自绘按钮 消息响应

    单检测到按下消息时,发送一个消息 m_pParent->PostMessage(WM_COMMAND, IDC_BUTTON1); 然后再在消息映射里建立映射. ON_COMMAND(IDC_B ...

  2. leetcode-【hard】4. Median of Two Sorted Arrays

    题目 There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the ...

  3. confirm perspective switch 初始化

    更新代码与资源库同步时   也是这么设置

  4. MFC自绘控件不错的网站收集,不定时更新。

    找资料的时候,遇到好的网站收集起来,当时看看就忘记网址,下次再找又找不到,写下来才记得牢.欢迎大家留言,共同收集. 国外的: 1.codeproject https://www.codeproject ...

  5. linux ssh publickey登录

    一.公钥认证的基本思想: 对信息的加密和解密采用不同的key,这对key分别称作private key和public key,其中,public key存放在目标服务器上,而private key为特 ...

  6. appstore不能登陆

    Happened same with me. This is happening because the App Store is looking for a working connection o ...

  7. GNS3 桥接虚拟网卡 telnet 实验

    网上很多桥接本地网卡的,一直测试不通.无奈,本人桥接vmware 虚拟网卡通! 1: 2: 3:telnet 加密实验 R1(config)#line vt R1(config)#line vty 0 ...

  8. cnblogs,我回来了

    之前是在Github上搭了个博客,原因只有一个:可以弄个比较个性的域名,逼格高. 不过用起来倒是麻烦,一是经常纠结自己的主页是不是不够逼格?二就是身在墙内,访问速度不理想. 所以,还是安心的在这里,写 ...

  9. svn记录删除

    Delete SVN Folders.reg 批量删除文件夹里的SVN 文件 ------------------------------------------------------------- ...

  10. ipython notebook设置工作路径和自动保存.py文件 ipython_notebook_config.py

    在安装完Anaconda,选择了配置环境变量后,打开cmd命令行 1. 打开命令行, 键入 ipython profile create 2. 键入 , 根据这个地址, 打开profile所在的文件夹 ...