以上是整个流程所需配置包括:1、在微信公共号设置页面填写自己服务器的地址,具体到接收请求的地址。2、在接受请求的地址进行验证。具体实现:(Tomcat 作为服务器,jsp技术实现)微信会要求对填写的地址进行验证,很简单,他会发送一个get请求到填写的地址,获取他,并按照官方说明进行返回,这一步骤也是...
分类:
微信 时间:
2014-12-11 10:17:26
阅读次数:
314
1 string signature = Request["signature"]; 2 string timestamp = Request["timestamp"]; 3 string nonce = Request["nonce"]; 4 5 List list = new Lis...
分类:
微信 时间:
2014-11-07 18:51:58
阅读次数:
717
public partial class Weixin : System.Web.UI.Page { private string Token = "weixin"; //与那边填写的token一致 protected void Page_Load(object sender, EventArgs ...
分类:
微信 时间:
2014-11-06 17:14:55
阅读次数:
367
public class WXverifyController : Controller { public ActionResult WXverify() { Load(); return View(); }...
分类:
微信 时间:
2014-07-14 09:50:52
阅读次数:
399