| 1 | <!DOCTYPE html> |
| 2 | <html lang="es"> |
| 3 | |
| 4 | <head> |
| 5 | |
| 6 | <meta charset="UTF-8"> |
| 7 | <meta name="viewport" content="width=device-width"> |
| 8 | |
| 9 | <title>Llaves VAPID</title> |
| 10 | |
| 11 | </head> |
| 12 | |
| 13 | <body> |
| 14 | |
| 15 | <h1>Llaves VAPID</h1> |
| 16 | |
| 17 | <pre> |
| 18 | <?php |
| 19 | |
| 20 | require __DIR__ . "/../vendor/autoload.php"; |
| 21 | |
| 22 | use Minishlink\WebPush\VAPID; |
| 23 | |
| 24 | var_dump(VAPID::createVapidKeys()); |
| 25 | |
| 26 | ?> |
| 27 | </pre> |
| 28 | |
| 29 | </body> |
| 30 | |
| 31 | </html> |