- force all jd access to use GET

This commit is contained in:
gazebo
2019-03-18 15:05:44 +08:00
parent 471f7aeefa
commit 6864f6342f

View File

@@ -159,7 +159,7 @@ func (a *API) AccessAPI(apiStr string, jdParams map[string]interface{}) (retVal
} }
jdParamStr := string(jdParamBytes) jdParamStr := string(jdParamBytes)
userGet := true userGet := true
if len(jdParamStr) > 12 { if true { //len(jdParamStr) > 12 {
userGet = false userGet = false
} }
params["jd_param_json"] = jdParamStr params["jd_param_json"] = jdParamStr