Update file jwt_adapter.go
This commit is contained in:
parent
a3a952308e
commit
6f8eaba30d
@ -24,7 +24,7 @@ type JwtAdapter struct {
|
|||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
aS := os.Getenv("JWT_SECRET")
|
aS := os.Getenv("JWT_SECRET")
|
||||||
|
fmt.Println("ASS", aS)
|
||||||
if len(aS) != 0 {
|
if len(aS) != 0 {
|
||||||
accessSecret = aS
|
accessSecret = aS
|
||||||
}
|
}
|
||||||
@ -67,7 +67,7 @@ func Decode(tokenString string) (*JwtAdapter, error) {
|
|||||||
if _, ok := token.Method.(*jwt.SigningMethodRSA); !ok {
|
if _, ok := token.Method.(*jwt.SigningMethodRSA); !ok {
|
||||||
return nil, fmt.Errorf("unexpected signing method: %v", token.Header["alg"])
|
return nil, fmt.Errorf("unexpected signing method: %v", token.Header["alg"])
|
||||||
}
|
}
|
||||||
|
fmt.Println("ASSS", accessSecret)
|
||||||
return jwt.ParseRSAPublicKeyFromPEM([]byte(accessSecret))
|
return jwt.ParseRSAPublicKeyFromPEM([]byte(accessSecret))
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user