Skip to content

Commit

Permalink
Merge pull request #258 from easytzb/master
Browse files Browse the repository at this point in the history
修正JS-SDK 生成的config元素大小写错误导致的config:fail报错
  • Loading branch information
dodgepudding committed Oct 9, 2015
2 parents 085b7cd + 5f7de1b commit c7c9726
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wechat.class.php
Expand Up @@ -1282,8 +1282,8 @@ public function getJsSign($url, $timestamp=0, $noncestr='', $appid=''){
if (!$sign)
return false;
$signPackage = array(
"appid" => $this->appid,
"noncestr" => $noncestr,
"appId" => $this->appid,
"nonceStr" => $noncestr,
"timestamp" => $timestamp,
"url" => $url,
"signature" => $sign
Expand Down

0 comments on commit c7c9726

Please sign in to comment.