Documentation ¶
Overview ¶
Package health_qrcode 家校应用/复学码
Index ¶
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetHealthQrcode ¶
func GetHealthQrcode(ctx *corporation.App, payload []byte) (resp []byte, err error)
获取师生健康码
See: https://work.weixin.qq.com/api/doc/90000/90135/93746
POST https://qyapi.weixin.qq.com/cgi-bin/school/user/get_health_qrcode?access_token=ACCESS_TOKEN
Example ¶
package main import ( "fmt" "github.com/cvblood/qywxapi/corporation" "github.com/cvblood/qywxapi/corporation/apis/school_app/health_qrcode" ) func main() { var ctx *corporation.App payload := []byte("{}") resp, err := health_qrcode.GetHealthQrcode(ctx, payload) fmt.Println(resp, err) }
Output:
func GetStudentCustomizeHealthInfo ¶
func GetStudentCustomizeHealthInfo(ctx *corporation.App, payload []byte) (resp []byte, err error)
获取学生健康信息
See: https://work.weixin.qq.com/api/doc/90000/90135/93745
Example ¶
package main import ( "fmt" "github.com/cvblood/qywxapi/corporation" "github.com/cvblood/qywxapi/corporation/apis/school_app/health_qrcode" ) func main() { var ctx *corporation.App payload := []byte("{}") resp, err := health_qrcode.GetStudentCustomizeHealthInfo(ctx, payload) fmt.Println(resp, err) }
Output:
func GetTeacherCustomizeHealthInfo ¶
func GetTeacherCustomizeHealthInfo(ctx *corporation.App, payload []byte) (resp []byte, err error)
获取老师健康信息
See: https://work.weixin.qq.com/api/doc/90000/90135/93744
Example ¶
package main import ( "fmt" "github.com/cvblood/qywxapi/corporation" "github.com/cvblood/qywxapi/corporation/apis/school_app/health_qrcode" ) func main() { var ctx *corporation.App payload := []byte("{}") resp, err := health_qrcode.GetTeacherCustomizeHealthInfo(ctx, payload) fmt.Println(resp, err) }
Output:
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.