From 208ba3a1c25e634071ee4ae4e7ad9bb218870420 Mon Sep 17 00:00:00 2001 From: yashen Date: Fri, 18 Aug 2017 11:00:23 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E7=AD=BE=E5=90=8D=E9=94=99?= =?UTF-8?q?=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- B3WeChat/Utils/InOutMessageUtil.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/B3WeChat/Utils/InOutMessageUtil.cs b/B3WeChat/Utils/InOutMessageUtil.cs index 0680e80..8e6e9d8 100644 --- a/B3WeChat/Utils/InOutMessageUtil.cs +++ b/B3WeChat/Utils/InOutMessageUtil.cs @@ -166,7 +166,7 @@ namespace BWP.B3WeChat.Utils public static string GetJsApiSignature(string noncestr, string timestamp, string url) { - var origin = string.Format("jsapi_ticket={0}&=noncestr{1}×tamp={2}&url={3}", GetJsApiTicket(),noncestr, timestamp, url); + var origin = string.Format("jsapi_ticket={0}&noncestr={1}×tamp={2}&url={3}", GetJsApiTicket(), noncestr, timestamp, url); return FormsAuthentication.HashPasswordForStoringInConfigFile(origin, "SHA1").ToLower(); }