|
|
@ -103,6 +103,7 @@ type WeixinRpcService interface { |
|
|
|
SendUniformMessage(in *Request, out *Response) error |
|
|
|
GetMiniAppOpenid(in *Request, out *Response) error |
|
|
|
GetMpOpenid(in *Request, out *Response) error |
|
|
|
GetAppOpenid(in *Request, out *Response) error |
|
|
|
GetMpUserInfo(in *Request, out *Response) error |
|
|
|
GetMiniappQrcode(in *Request, out *Response) error |
|
|
|
} |
|
|
@ -191,6 +192,9 @@ func (c *WeixinRpcServiceClient) GetMiniAppOpenid(in *Request, out *Response) er |
|
|
|
func (c *WeixinRpcServiceClient) GetMpOpenid(in *Request, out *Response) error { |
|
|
|
return c.Call("WeixinRpcService.GetMpOpenid", in, out) |
|
|
|
} |
|
|
|
func (c *WeixinRpcServiceClient) GetAppOpenid(in *Request, out *Response) error { |
|
|
|
return c.Call("WeixinRpcService.GetAppOpenid", in, out) |
|
|
|
} |
|
|
|
func (c *WeixinRpcServiceClient) GetMpUserInfo(in *Request, out *Response) error { |
|
|
|
return c.Call("WeixinRpcService.GetMpUserInfo", in, out) |
|
|
|
} |
|
|
|