Vladyslav
Results
2
issues of
Vladyslav
My parsing of token: ```go token, err := jwt.ParseWithClaims(tokenString, &accessToken{}, func(token *jwt.Token) (interface{}, error) { return []byte(t.secretKey), nil }) ``` I took an example of how to distinguish between errors...
For example we have: ```graphql # schema.graphql type Todo { id: ID! text: String! done: Boolean! users: [User!] } type User { id: ID! name: String! } ``` ```yaml #...