LinkinStars
LinkinStars
直接使用 `README.zh.md` 中的案例会报错 ```json { Code: 230001, Msg: "Your request contains an invalid request parameter, ext=invalid message content", Err: { } } ``` 原因是因为消息内容 json 中的双引号没有转义的问题,所以修改 `README.zh.md` 添加 \ 转义
```go // Manager Manager结构体 type Manager struct { client *client.Client Credentials *auth.Credentials } ``` 在实际使用中想使用 client 的 `CallWithJson` 方法,但是发现 client 没有导出,外部没办法使用。 具体原因是因为需要对接企业号相关接口,发现企业号相关接口当前 sdk 没有对接,故想自己调用实现。 所以建议将 client 导出,修改为: ```go // Manager...
update Readme spelling mistake
When I use AES encryption, I find that the result is different every time after encryption. The reason is due to the problem of not specifying the initialization vector. So...
> I can write a script to help keep [this list](https://answer.apache.org/docs/notice) up to date! Maybe you can create an issue and ping me for subscribing? _Originally posted by @tisonkun in...
### Description Fixes #11141 ``` "cert": "$ENV://APISIX_ENV_CERT", "key": "$ENV://APISIX_ENV_KEY", ``` Only lowercase is matched in the 'cert' and 'key' parameters. To maintain consistency, match the uppercase as well. ### Checklist...