You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
499 B
16 lines
499 B
package jwt |
|
|
|
import ( |
|
"context" |
|
"fmt" |
|
"strings" |
|
"testing" |
|
) |
|
|
|
func TestA(t *testing.T) { |
|
str := `fS6HZv4HoMo+OnaNsLuM7O4Kx9L4UrM2TdnJB/J5qK75mJiEsuTyELYxaZXkFMnqre4A1B/pzzpFNKwB4k2M2tBcrSAakYU4I+cOFRcy7ANJdjis529x8Du89Mh16ZAViCHNVs+Rp6qHFK/hjdLVEkFY7Ws2t++cu4rF+DQacs9yccoh2wTCVweNOIrGz0fOaEgVroprhP4xvvfVUj293ovCv9T+mF9qHJYmswEMOu1+UMLLf3EyBVXgxnNrHzvX` |
|
str = strings.ReplaceAll(str, " ", "+") |
|
|
|
tt := &JwtDefault{} |
|
fmt.Println(tt.ParseToken(context.Background(), "sfe023f_9fd&fwfl", str)) |
|
}
|
|
|