public static bool CheckSignature(WX_Author au) { if (au == null) return false; return CheckSignature("WX1979ToKen", au.timestamp, au.nonce, au.signature); }
public ActionResult Index(WX_Author au) { return WX_Api.CheckSignature(au) ? Json(au.echostr) : Json(""); }