def authenticate(self, req):
        """
            No real authentication

            :param req: The current request
            :type req: falcon.Request

            :returns: A session object
            :rtype: AbstractSession
        """
        assert isinstance(req, falcon.Request)

        api_access_token = req.get_header("X-TREX-API-ACCESS-TOKEN")  # This is the api access token
        access_token = req.get_header("X-TREX-USER-ACCESS-TOKEN")  # This is the access token

        try:
            access_token_entity = AccessTokenDAO.select_by_access_token(access_token)
        except NoResultFound:
            raise Exception("You don't have access")

        return ApiSession(access_token_entity.user)