ソースを参照

modify by hyb for cancel permission check

hyb 7 年 前
コミット
c1a04796a9
1 ファイル変更4 行追加3 行削除
  1. 4 3
      httphandler.go

+ 4 - 3
httphandler.go

@@ -119,8 +119,9 @@ func checkSignature(body []byte, timestamp, signature string) bool {
 
 func checkPermission(timestamp, signature string, body []byte) (int, bool) {
 
-	if checkSignature(body, timestamp, signature) == false {
-		return NO_AUTH, false
-	}
+	// modify by hyb  cancel checkPermission
+	//if checkSignature(body, timestamp, signature) == false {
+	//	return NO_AUTH, false
+	//}
 	return OK, true
 }