Hi aevery one! What I do: 1. I get access token from api/get-token 2. Than I decode access token and get some user info, name, id, etc. 3. After I try to get user by id, owner and userId over api method /api/get-user, it's take me error - Unauthorized operation A see that request in swagger sending cookie in headers, I take cookie session_id from swagger request, put it to my request headers and it's ok, request was successfuly, but for this I must be authorised on web site, if I not loggined in web site, my request was fail. I think what I must do: 1. Try to get session by api method - api/get-session 2. If is not found, creating new session by api method - api/add-session 3. Put finded or created session id to my request I wrote this code, but: 1. If I try to get session, I take error - waw-casdoor:GetOwnerAndNameFromId() error, wrong token count for ID: my_org_name/my_app_name/my_user_name 2. When I try to create new session, I take error too - Unauthorized operation How can I get user info?