-
Notifications
You must be signed in to change notification settings - Fork 282
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v3版本 GetUnlimitedQRCode获取小程序码方法 入参参数 check_path env_version未加入 #75
Comments
新版本已增加🙏 |
https://pkg.go.dev/github.com/medivhzhan/weapp/v3#UnlimitedQRCode |
e10f985 |
func (cli *Client) GetUnlimitedQRCode(code *UnlimitedQRCode) (*http.Response, *request.CommonError, error) {}应该是这个方法里面的入参 |
再看下最新版本呢 |
用这个试试呢 |
https://pkg.go.dev/github.com/medivhzhan/weapp/v3@v3.6.8/wxacode#UnlimitedQRCode |
是我用错方法了还是确实有问题?我刚刚测试的时候,提示47001,data format error
|
|
check_path=false的时候,我这边刚刚测试还是提示41030,develop模式 |
这个应该就是调用层面的问题了 |
41030 | page 不合法(页面不存在或者小程序没有发布、根路径前加 /或者携带参数) |
|
|
V3版本确实未加入CheckPath 和 EnvVersion,希望能合并到V3版本里 |
resp, ce, err := wxClient.NewWXACode().GetUnlimited(&wxacode.UnlimitedQRCode{
Scene: fmt.Sprintf("?id=%d&stationId=%d&opType=%d", 1, 1, 1),
Page: "pages/shop/index/index",
Width: 430,
EnvVersion: "develop",
CheckPath: "false",
AutoColor: true,
IsHyaline: false,
}) 用这个也不行吗? |
@royalrick v3版本还没有这个。 |
补充
check_path : 检查 page 是否存在,为 true 时 page 必须是已经发布的小程序存在的页面(否则报错);为 false 时允许小程序未发布或者 page 不存在, 但 page 有数量上限(60000个)请勿滥用
env_version:要打开的小程序版本。正式版为 release,体验版为 trial,开发版为 develop
参考地址:小程序
需求:
这2个参数方便调试使用,期待加入
The text was updated successfully, but these errors were encountered: