Skip to Main Content
URL in JavaScript User logged as a Developer

User Logged

APEX PL/SQL
How to check if a user has logged in

Example

BEGIN
    IF apex_authentication.is_authenticated THEN
        RETURN FALSE;
    ELSE
        RETURN TRUE;
    END IF;
END;