/// <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. (Hibernate进阶)Hibernate映射——多对一单向关联映射(四)

    介绍基于基本映射的关联关系映射. 概念 基本映射是对一个实体进行映射,关联映射就是处理多个实体之间的关系,将关联关系映射到数据库中,所谓的关联关系在对象模型中有一个或多个引用. 分类 关联关系分为上述 ...

  2. The PHP Package 之 monolog[转]

    Monolog 发送你的日志到文件.到sockets.到邮箱.到数据库或(和)者其他网路存储服务(云).Monolog可以做到同时保存到一个或多个存储介质(后面的栈冒泡处理). 安装   $ comp ...

  3. Linux 性能监控之命令行工具

    引言 对于系统和网络管理员来说每天监控和调试Linux系统的性能问题是一项繁重的工作.这些命令行工具可以在各种Linux系统下使用,可以用于监控和查找产生性能问题的原因.这个命令行工具列表提供了足够的 ...

  4. Linux环境下安装Oracle 10g 发生错误 You do not have permission to write to the inventory location

    关于安装过程中出现的一些错误,我总结一下,路径没权限,不是该用户组下面的需要创建oracle的用户和用户组及目录 ,并对目录赋予相应权限,可参考下面的例子:这个地方如果简单的按照下面的程序做也能安装成 ...

  5. WCF ajax跨域配置

    webconfig必须配置 binding="webHttpBinding" <service name="Hezi.MsgService.Send"&g ...

  6. 好用的內存鏡像工具Belkasoft RAM Capture

    来自俄罗斯的取证大厂Belkasoft,旗下的主力产品Belkasoft Evidence Center有不错的评价,除了BEC之外,咱们Yuri老兄也是佛心来着的,提供了一个免费内存镜像工具RamC ...

  7. 使用ab进行压力测试

    在Windows系统的命令行下,进入ab.exe程序所在目录,执行ab.exe程序.注意直接双击无法正确运行.

  8. Visual Studio 2015 工具箱丢失

    网上主要的解答分为两种:1. 未打开设计界面 2. 重置 实际上,还有一个原因是,没有启动完整版的VS. 安装完后,会有两个VS的程序,一个是Blend For Visual Studio 2015, ...

  9. jenkins配置自动发送邮件

    1.开通QQ的SMTP服务,需要发一条短信,qq会给你一个密码(不是你的QQ邮箱密码哦) 2.安装 Email Extension Plugin 插件 3.进入系统管理--系统设置 3.1按照如下图设 ...

  10. Ajax嵌套调用 (jquery) $.ajaxSettings.async = false;

    <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <m ...