作者 竞泽

fix:去掉不参与签名字段

@@ -65,7 +65,7 @@ class Signature @@ -65,7 +65,7 @@ class Signature
65 $this->sortByASCII(); 65 $this->sortByASCII();
66 66
67 $string = $this->map($this->item, function ($k, $v) { 67 $string = $this->map($this->item, function ($k, $v) {
68 - return !($v === '' || $v === null); 68 + return !($v === '' || $v === null || $k === 'service');
69 }); 69 });
70 70
71 return self::encode($string); 71 return self::encode($string);