Go SDK使用说明

项目主页: https://github.com/shopex/teegon-open-go-sdk/

基本设置


c,err:=teegon.NewClient("http://127.0.0.1:8080/api","key","secret")

发起api请求


c.Get("shopex.query.appqueue", &map[string]interface{}{
   "user_eid":"321312312",
    "app_id": "test1",
})
...
c.Post("shopex.query.appqueue", &map[string]interface{}{
   "user_eid":"321312312",
    "app_id": "test1",
})