| 123456789101112131415 |
- package logic
- import (
- "fmt"
- "testing"
- )
- func TestCreateJWT(t *testing.T) {
- l := new(LoginByWeixinLogic)
- payloads := map[string]interface{}{
- "userId": 3,
- "sessionKey": "sessionKey",
- }
- fmt.Println(l.CreateJWT(1624415746, "6hy789iu87", payloads, 604800))
- }
|