Browse Source

提交

master
listen 2 years ago
parent
commit
9f96115ccd
4 changed files with 98 additions and 2 deletions
  1. +9
    -1
      common.go
  2. +72
    -0
      miniapp_qrcode.client.go
  3. +16
    -0
      miniapp_qrcode.client_test.go
  4. +1
    -1
      weixin.proto

+ 9
- 1
common.go View File

@ -1,5 +1,9 @@
package weixinrpc
import (
"git.tetele.net/tgo/conf"
)
const DES_KEY = "wxserrpc"
type WxApiRes struct {
@ -104,10 +108,14 @@ type MpUserInfoRes struct {
func rpc_server_conn(url ...string) (*WeixinRpcServiceClient, error) {
var wx_rpc_url string = "127.0.0.1:7969"
var wx_rpc_url string
if len(url) > 0 && url[0] != "" {
wx_rpc_url = url[0]
wx_rpc_url = conf.WEIXIN_RPC_PORT
} else {
wx_rpc_url = "127.0.0.1:" + conf.WEIXIN_RPC_PORT
}
conn, _, err := DialWeixinRpcService("tcp", wx_rpc_url)
if err != nil {
return nil, err


+ 72
- 0
miniapp_qrcode.client.go View File

@ -0,0 +1,72 @@
package weixinrpc
import (
"encoding/json"
"log"
"strconv"
"time"
"git.tetele.net/tgo/crypter"
"github.com/golang/protobuf/proto"
)
func GetMiniAppQrcode(appId, appSecret, page,scene string, url ...string) (string, error) {
conn, err := rpc_server_conn(url...)
if err != nil {
return "", err
}
defer conn.Close()
data := map[string]string{}
data["app_id"] = appId
data["app_secret"] = appSecret
data["page"] = page
data["scene"] = scene
data_json, err := json.Marshal(data)
if err != nil {
return "", err
}
encryData := crypter.DesEn(string(data_json), DES_KEY)
now_int64 := time.Now().Unix()
now := strconv.FormatInt(now_int64, 10)
sign := Sign(encryData, now)
req := &Request{
proto.String(encryData),
proto.String(now),
proto.String(sign),
nil}
res := &Response{}
err = conn.GetMiniappCode(req, res)
if err != nil {
return "", err
}
//解密
res_data_de, err := GetOrgData(res)
if err != nil {
return "", err
}
var result string
err = json.Unmarshal([]byte(res_data_de), &result)
if err != nil {
log.Println(err, res_data_de)
return "", err
}
return result, nil
}

+ 16
- 0
miniapp_qrcode.client_test.go View File

@ -0,0 +1,16 @@
package weixinrpc
import (
"testing"
)
func Test_GetMiniappCode(t *testing.T){
appid := "wx3d53ccbaf69f7995"
appSecret := "165983626235636be54a16404e3e70a7"
page := "/pages/home/index/index"
scene := "user_id=2"
qrcode,err := GetMiniAppQrcode(appid,appSecret,page,scene)
t.Log(qrcode)
t.Log(err)
}

+ 1
- 1
weixin.proto View File

@ -24,5 +24,5 @@ service WeixinRpcService {
rpc getMiniAppOpenid(Request) returns (Response); // openid
rpc getMpOpenid(Request) returns (Response); // openid
rpc getMpUserInfo(Request) returns (Response); //
rpc getMiniappCode(Request) returns (Response); //
rpc getMiniappQrcode(Request) returns (Response); //
}

Loading…
Cancel
Save