When a user signin using email/password authentication, accesstoken is returned, how can we validate and decode this token on realm services function backend as we need secret to do so, from where we can get this secret to validate that token is valid

const decoded = jwt.verify(token, secretKey);