Skip to content

Commit 3d4310f

Browse files
author
luojielin
committed
fix: fix IntrospectToken might null pointer
1 parent 5f97c51 commit 3d4310f

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

authentication/authentication_client.go

+7-1
Original file line numberDiff line numberDiff line change
@@ -362,8 +362,14 @@ func (client *AuthenticationClient) IntrospectToken(token string) (*dto.TokenInt
362362
Headers: client.getReqHeaders(header),
363363
ReqDto: body,
364364
})
365-
println(string(resp.Body))
365+
366366
var response dto.TokenIntrospectResponse
367+
368+
if resp == nil || resp.Body == nil {
369+
return &response, err
370+
}
371+
println(string(resp.Body))
372+
367373
if err != nil {
368374
return nil, err
369375
}

0 commit comments

Comments
 (0)