icechen 5cc8efc9e9
All checks were successful
continuous-integration/drone/push Build is passing
fix: 管理员登录类型
2022-01-14 00:46:06 +08:00

15 lines
391 B
Go

package lark
import (
"context"
"github.com/larksuite/oapi-sdk-go/core"
authen "github.com/larksuite/oapi-sdk-go/service/authen/v1"
)
func (l Lark) Auth(code string) (*authen.UserAccessTokenInfo, error) {
return l.userService.Authens.AccessToken(core.WrapContext(context.Background()), &authen.AuthenAccessTokenReqBody{
GrantType: "authorization_code",
Code: code,
}).Do()
}