export token parser for refresh token service

This commit is contained in:
kevin
2020-08-12 12:12:31 +08:00
parent 196475383b
commit a7c02414f3
3 changed files with 4 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ import (
"github.com/dgrijalva/jwt-go"
"github.com/tal-tech/go-zero/core/logx"
"github.com/tal-tech/go-zero/rest/internal"
"github.com/tal-tech/go-zero/rest/token"
)
const (
@@ -43,7 +43,7 @@ func Authorize(secret string, opts ...AuthorizeOption) func(http.Handler) http.H
opt(&authOpts)
}
parser := internal.NewTokenParser()
parser := token.NewTokenParser()
return func(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
token, err := parser.ParseToken(r, secret, authOpts.PrevSecret)

View File

@@ -1,4 +1,4 @@
package internal
package token
import (
"net/http"

View File

@@ -1,4 +1,4 @@
package internal
package token
import (
"net/http"