7.5 GET_CALLBACK_URL Function
This function is a plugin helper function to return a URL that is used as a landing request for external login pages. When the browser sends the request, it triggers the authentication plugin ajax callback, which can be used to log the user in.
Syntax
APEX_AUTHENTICATION.GET_CALLBACK_URL ( 
    p_x01           IN VARCHAR2 DEFAULT NULL, 
    p_x02           IN VARCHAR2 DEFAULT NULL, 
    p_x03           IN VARCHAR2 DEFAULT NULL, 
    p_x04           IN VARCHAR2 DEFAULT NULL, 
    p_x05           IN VARCHAR2 DEFAULT NULL, 
    p_x06           IN VARCHAR2 DEFAULT NULL, 
    p_x07           IN VARCHAR2 DEFAULT NULL, 
    p_x08           IN VARCHAR2 DEFAULT NULL, 
    p_x09           IN VARCHAR2 DEFAULT NULL, 
    p_x10           IN VARCHAR2 DEFAULT NULL,
    p_callback_name IN VARCHAR2 DEFAULT NULL ) 
    RETURN VARCHAR2; Parameters
Table 7-2 APEX_AUTHENTICATION.GET_CALLBACK _URL Function Parameters
| Parameters | Description | 
|---|---|
| 
 | Optional parameters that the external login passes to the authentication plugin. | 
| 
 | Optional public name of the callback, defaults to  | 
Example
See Also:
Parent topic: APEX_AUTHENTICATION