微信接口的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.

49 lines
772 B

  1. package weixinrpc
  2. const DES_KEY = "wxserrpc"
  3. type WxApiRes struct {
  4. Errcode int
  5. Errmsg string
  6. }
  7. type Req struct {
  8. SiteId string
  9. Dbname string
  10. }
  11. type AccessTokenReq struct {
  12. Req
  13. Appid string
  14. Secret string
  15. }
  16. type AccessTokenRes struct {
  17. AccessToken string
  18. }
  19. type UniformMessageReq struct {
  20. Req
  21. Appid string
  22. Secret string
  23. Touser string
  24. MpAppid string
  25. TemplateId string
  26. Url string
  27. MiniProgram interface{}
  28. Data interface{}
  29. }
  30. func rpc_server_conn(url ...string) (*WeixinRpcServiceClient, error) {
  31. var wx_rpc_url string = "127.0.0.1:7969"
  32. if len(url) > 0 && url[0] != "" {
  33. wx_rpc_url = url[0]
  34. }
  35. conn, _, err := DialWeixinRpcService("tcp", wx_rpc_url)
  36. if err != nil {
  37. return nil, err
  38. }
  39. return conn, nil
  40. }