-
认证方式:
- 申请 app 和 app_secret
- 请求头带上 header
app (字符串)服务ID ts (整形)时间戳,单位秒。半小时有效 nonce(字符串)随机数 sign (字符串)签名
- 签名的生成方式
// go 语言 str=时间戳-随机数-app_secret sign := fmt.Sprintf("%x", md5.Sum([]byte(str)))
-
使用的例子
比如你想调接口/xkw/proxy/xopqbm/questions,就拼接域名http://dnfyyds.tech/server1/xkw/proxy/xopqbm/questions 进行调用
接口参数和百度的参数一样
// go 语言的一个例子
func Test() (err error) {
query := make(map[string]string)
header := make(map[string]string)
// app (字符串)服务ID
// ts (整形)时间戳,单位秒。半小时有效
// nonce(字符串)随机数
// sign (字符串)签名
nonce := mysql_models.GenerateRandomString(40)
ts := fmt.Sprintf("%d", time.Now().Unix())
str := fmt.Sprintf("%s-%s-%s", ts, nonce, "自己的app_secret")
sign := fmt.Sprintf("%x", md5.Sum([]byte(str)))
header["app"] = "自己的appID"
header["ts"] = ts
header["nonce"] = nonce
header["sign"] = sign
query["location"] = "22.51902, 113.462396"
query["output"] = "json"
logapp.Debug("query", query)
var resp interface{}
err = curl.RequestWithQuery1("http://dnfyyds.tech/server1", "/xkw/proxy/xopqbm/questions", http.MethodPOST, query, header, &resp)
return
}