微信接口的RPC包
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

80 lines
1.3 KiB

package weixinrpc
const DES_KEY = "wxserrpc"
type WxApiRes struct {
Errcode int
Errmsg string
}
type Req struct {
SiteId string
Dbname string
}
type AccessTokenReq struct {
Req
Appid string
Secret string
}
type AccessTokenRes struct {
AccessToken string
}
type UniformMessageReq struct {
Req
Appid string
Secret string
Touser string
MpAppid string
TemplateId string
Url string
MiniProgram interface{}
Data interface{}
}
type SubscribeMessageReq struct {
Req
Appid string
Secret string
Touser string
TemplateId string
Page string
MiniprogramState string
Lang string
Data interface{}
}
/**
* 获取小程序openid请求参数
*/
type MiniAppOpenidReq struct {
Appid string
Secret string
JsCode string
}
/**
* 获取小程序openid返回参数
*/
type MiniAppOpenidRes struct {
Openid string
SessionKey string
Unionid int
WxApiRes
}
func rpc_server_conn(url ...string) (*WeixinRpcServiceClient, error) {
var wx_rpc_url string = "127.0.0.1:7969"
if len(url) > 0 && url[0] != "" {
wx_rpc_url = url[0]
}
conn, _, err := DialWeixinRpcService("tcp", wx_rpc_url)
if err != nil {
return nil, err
}
return conn, nil
}