Hi,
Under Apex 24 and under Oracle 19c, I followed Dimitri Gielis blog for Custom Authentication :
https://dgielis.blogspot.com/2017/08/create-custom-authentication-and.html
I get an error with the procedure :
procedure post_auth
is
begin
mtl_auth_pkg.custom_authenticate(
p_username => :APP_USER,
out_user_id => :AI_USER_ID,
out_time_zone => :AI_TIME_ZONE
);
end post_auth;
ORA-06550: Ligne 5, colonne 3 : PLS-00306: numéro ou types d'arguments erronés dans appel à 'CUSTOM_AUTHENTICATE'
@dimitri-gielis3 I think there must be an error in the blog. Because the function custom_authenticate accept only two parameters :
function custom_authenticate
(
p_username in varchar2,
p_password in varchar2
)
Thank you.