47.1 GENERATE_PUSH_CREDENTIALS Procedure
This procedure regenerates push credential keys based on the provided application ID.
Syntax
APEX_PWA.GENERATE_PUSH_CREDENTIALS (
p_application_id IN NUMBER DEFAULT [current application id] )
Parameters
Parameter | Description |
---|---|
p_application_id |
ID of the application. Defaults to current application. |
Example
The following example regenerates push credential keys for application 100.
BEGIN
apex_pwa.generate_push_credentials (
p_application_id => 100 );
END;
Parent topic: APEX_PWA