Skip to content

Commit 635a0c6

Browse files
authored
feat(auth): getAccessToken with context (#820)
1 parent 010e49c commit 635a0c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

miniprogram/auth/auth.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ func (auth *Auth) CheckEncryptedDataContext(ctx context2.Context, encryptedMsgHa
8181
var (
8282
at string
8383
)
84-
if at, err = auth.GetAccessToken(); err != nil {
84+
if at, err = auth.GetAccessTokenContext(ctx); err != nil {
8585
return
8686
}
8787

@@ -120,7 +120,7 @@ func (auth *Auth) GetPhoneNumberContext(ctx context2.Context, code string) (*Get
120120
at string
121121
err error
122122
)
123-
if at, err = auth.GetAccessToken(); err != nil {
123+
if at, err = auth.GetAccessTokenContext(ctx); err != nil {
124124
return nil, err
125125
}
126126
body := map[string]interface{}{

0 commit comments

Comments
 (0)